> ## Documentation Index
> Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt
> Use this file to discover all available pages before exploring further.

# Get agent status

> This operation retrieves the provisioning and activation status of a specific agent. The agent ID is returned as `agent_id` in the Provision agent response. Accepts either the internal UUID or the external ID. Requires authentication with the agent's own API key.



## OpenAPI

````yaml get /api/v1/principals/{agent_id}/status
openapi: 3.1.0
info:
  title: Cobo Agentic Wallet Service
  description: Unified wallet engine for human and agent principals
  version: 1.3.0
servers: []
security: []
paths:
  /api/v1/principals/{agent_id}/status:
    get:
      tags:
        - Identity
      summary: Get agent status
      description: >-
        This operation retrieves the provisioning and activation status of a
        specific agent. The agent ID is returned as `agent_id` in the Provision
        agent response. Accepts either the internal UUID or the external ID.
        Requires authentication with the agent's own API key.
      operationId: get_agent_status
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              The agent's unique identifier. Accepts either the internal UUID
              (returned as `id` by the Provision agent operation) or the
              external ID (`external_id`).
            title: Agent Id
          description: >-
            The agent's unique identifier. Accepts either the internal UUID
            (returned as `id` by the Provision agent operation) or the external
            ID (`external_id`).
        - name: X-API-Key
          in: header
          required: false
          schema:
            title: X-Api-Key
            type: string
            nullable: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse_AgentStatusResponse_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WrappedValidationError'
components:
  schemas:
    StandardResponse_AgentStatusResponse_:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        result:
          $ref: '#/components/schemas/AgentStatusResponse'
        suggestion:
          type: string
          title: Suggestion
          default: ''
        message:
          type: string
          title: Message
          default: ''
        meta:
          $ref: '#/components/schemas/PaginationMeta'
          nullable: true
      type: object
      required:
        - result
      title: StandardResponse[AgentStatusResponse]
    WrappedValidationError:
      title: WrappedValidationError
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          const: false
          default: false
          title: Success
        error:
          type: object
          title: Error
          required:
            - detail
          properties:
            detail:
              type: array
              title: Detail
              items:
                $ref: '#/components/schemas/ValidationError'
    AgentStatusResponse:
      properties:
        agent_id:
          type: string
          title: Agent Id
          description: The agent's principal ID.
        status:
          type: string
          enum:
            - active
            - temporary
          title: Status
          description: >-
            The agent's current status. `active`: the agent is ready for use.
            `temporary`: deprecated legacy value kept for backward compatibility
            and planned for removal in a future major release.
        owner_linked:
          type: boolean
          title: Owner Linked
          description: >-
            Whether the agent has been linked to an owner. `true`: linked.
            `false`: not linked.
        onboarding_session_id:
          title: Onboarding Session Id
          description: The onboarding session ID associated with this agent, if set.
          type: string
          format: uuid
          nullable: true
      type: object
      required:
        - agent_id
        - status
        - owner_linked
      title: AgentStatusResponse
      description: Agent status payload used by ``/principals/{id}/status``.
    PaginationMeta:
      properties:
        total:
          title: Total
          type: integer
          nullable: true
        offset:
          title: Offset
          type: integer
          nullable: true
        limit:
          title: Limit
          type: integer
          nullable: true
        has_more:
          title: Has More
          type: boolean
          nullable: true
        after:
          title: After
          type: string
          nullable: true
        before:
          title: Before
          type: string
          nullable: true
      type: object
      title: PaginationMeta
      description: |-
        Pagination metadata for list responses.

        Supports both legacy offset-based and cursor-based pagination.
        Cursor fields (``has_more``, ``after``, ``before``) are populated for
        cursor-paginated endpoints.  Legacy fields (``offset``, ``limit``) are
        populated when the caller uses the deprecated ``offset`` parameter.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````