> ## 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 pair info by wallet

> This operation retrieves the most recent **pair-claim** record for the specified wallet (i.e. `token_purpose=pair`), including the associated agent and wallet details. Restore tokens are not surfaced here — query a restore by its token via `GET /pairs/{token}`. Wallet view permission is required. Use the wallet UUID obtained from the List all wallets operation.



## OpenAPI

````yaml get /api/v1/wallets/pairs/info/{wallet_uuid}
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/wallets/pairs/info/{wallet_uuid}:
    get:
      tags:
        - Wallets
      summary: Get pair info by wallet
      description: >-
        This operation retrieves the most recent **pair-claim** record for the
        specified wallet (i.e. `token_purpose=pair`), including the associated
        agent and wallet details. Restore tokens are not surfaced here — query a
        restore by its token via `GET /pairs/{token}`. Wallet view permission is
        required. Use the wallet UUID obtained from the List all wallets
        operation.
      operationId: get_pair_info_by_wallet
      parameters:
        - name: wallet_uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Wallet Uuid
        - 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_WalletPairInfoRead_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WrappedValidationError'
components:
  schemas:
    StandardResponse_WalletPairInfoRead_:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        result:
          $ref: '#/components/schemas/WalletPairInfoRead'
        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[WalletPairInfoRead]
    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'
    WalletPairInfoRead:
      properties:
        token_status:
          $ref: '#/components/schemas/PairTokenStatus'
          description: >-
            The status of the pairing token. Possible values: `valid` (code not
            yet used), `expired`, `paired` (human confirmed; first reshare still
            required), `completed` (first pair or restore reshare has consumed
            this code), `not_found`.
        token_purpose:
          $ref: '#/components/schemas/WalletPairTokenPurpose'
          description: >-
            Which flow this token belongs to. `pair` = initial agent→human
            ownership claim; `restore` = post-completion recovery code that
            re-shares to a new human key share. `null` only when
            `token_status=not_found`.
          nullable: true
        token:
          title: Token
          description: >-
            Pending pairing token when `token_status=valid` (e.g. from
            authenticated pair-info by wallet).
          type: string
          nullable: true
        agent:
          $ref: '#/components/schemas/WalletPairAgentInfo'
          description: >-
            The agent principal that initiated pairing. Only present when
            `token_status=valid`.
          nullable: true
        wallet:
          $ref: '#/components/schemas/WalletPairWalletInfo'
          description: The wallet being paired. Only present when `token_status=valid`.
          nullable: true
      type: object
      required:
        - token_status
      title: WalletPairInfoRead
      description: >-
        Pair info response. Agent and wallet are only present when token is
        valid.
    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
    PairTokenStatus:
      type: string
      enum:
        - valid
        - expired
        - paired
        - completed
        - not_found
      title: PairTokenStatus
      description: Status of a pairing token lookup.
    WalletPairTokenPurpose:
      type: string
      enum:
        - pair
        - restore
      title: WalletPairTokenPurpose
      description: >-
        Which flow this claim row represents (pair claim vs post-completion
        restore).
    WalletPairAgentInfo:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        external_id:
          type: string
          title: External Id
      type: object
      required:
        - id
        - name
        - external_id
      title: WalletPairAgentInfo
      description: Agent principal summary for pair info.
    WalletPairWalletInfo:
      properties:
        uuid:
          type: string
          format: uuid
          title: Uuid
        wallet_type:
          $ref: '#/components/schemas/WalletType'
        name:
          type: string
          title: Name
        status:
          $ref: '#/components/schemas/WalletStatus'
      type: object
      required:
        - uuid
        - wallet_type
        - name
        - status
      title: WalletPairWalletInfo
      description: Wallet summary for pair info.
    WalletType:
      type: string
      enum:
        - Custodial
        - MPC
      title: WalletType
      description: Supported wallet types.
    WalletStatus:
      type: string
      enum:
        - preparing
        - active
        - archived
      title: WalletStatus
      description: Supported wallet statuses.

````