> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentchain.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Action by ID



## OpenAPI

````yaml GET /api/v1/settlement/actions/{id}
openapi: 3.0.0
info:
  title: AgentChain & PRIOR API
  description: The centralized gateway for the decentralized compute network.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.agentchain.xyz
    description: Production
security: []
tags: []
paths:
  /api/v1/settlement/actions/{id}:
    get:
      tags:
        - settlement
      summary: Get action by ID
      operationId: SettlementController_getAction
      parameters:
        - name: id
          required: true
          in: path
          description: 0x-prefixed action hash
          schema:
            type: string
      responses:
        '200':
          description: Action with full policy evaluations
        '404':
          description: Action not found

````