> ## 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 approval request detail

> Returns the full detail of a single approval request, including policy evaluations, evidence artifacts, and resolution state. Only accessible to the owning operator.



## OpenAPI

````yaml GET /api/v1/approvals/{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/approvals/{id}:
    get:
      tags:
        - Approval Queue
      summary: Get approval request detail
      description: >-
        Returns the full detail of a single approval request, including policy
        evaluations, evidence artifacts, and resolution state. Only accessible
        to the owning operator.
      operationId: ApprovalController_findOne
      parameters:
        - name: id
          required: true
          in: path
          description: Approval request ID
          schema:
            type: string
      responses:
        '200':
          description: Approval request detail
        '403':
          description: Not your approval request
        '404':
          description: Approval request not found
      security:
        - x-api-key: []
        - bearer: []
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````