> ## 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 Agent by ID

> Get detailed information about a registered agent, including policy status and verification history.



## OpenAPI

````yaml GET /api/v1/agents/{agentId}
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/agents/{agentId}:
    get:
      tags:
        - Agents
      summary: Get agent detail (wizard resume + detail page)
      operationId: AgentsController_getAgent
      parameters:
        - name: agentId
          required: true
          in: path
          description: Agent ID (agent_<slug>_<suffix>)
          schema:
            type: string
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````