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

# Get Custody Wallet Transfer Status

> Get the status of a custody wallet transfer by transaction ID



## OpenAPI

````yaml /api-reference/openapi.json get /payment/api/v1/custody-wallet/transfer/{transaction_id}
openapi: 3.0.0
info:
  title: Carbn Connect API
  version: 1.0.0
  description: >-
    API documentation for Carbn Connect services including user onboarding, KYC,
    wallet management, and transfers.
servers:
  - url: https://api.carbnconnect.com
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /payment/api/v1/custody-wallet/transfer/{transaction_id}:
    get:
      tags:
        - Custody Wallet
      summary: Get Custody Wallet Transfer Status
      description: Get the status of a custody wallet transfer by transaction ID
      operationId: getCustodyWalletTransferStatus
      parameters:
        - name: transaction_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          example: 6956a36c-528b-43c3-bc39-6000dc234fd8
          description: The unique identifier of the transfer transaction
      responses:
        '200':
          description: Transfer status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustodyWalletTransferStatusResponse'
        '400':
          description: Invalid request
        '401':
          description: Unauthorized - API key is missing or invalid
        '404':
          description: Transfer not found
      security:
        - ApiKeyAuth: []
components:
  schemas:
    CustodyWalletTransferStatusResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: 6956a36c-528b-43c3-bc39-6000dc234fd8
          description: Unique identifier of the transfer
        custody_wallet_id:
          type: string
          format: uuid
          example: c10dad79-4bd8-47f4-933e-4f197c5af680
          description: Source custody wallet ID
        to_address:
          type: string
          example: 3BsSGETYNCjfULdgYEBVmzwXgaspS6E5pgncJr3bfBeU
          description: Destination wallet address
        crypto:
          type: string
          example: usdc
          description: Cryptocurrency transferred
        source_amount:
          type: number
          example: 1
          description: Amount debited from source
        destination_amount:
          type: number
          example: 1
          description: Amount credited to destination
        status:
          type: string
          example: IN_REVIEW
          description: Current transfer status
        created_at:
          type: string
          format: date-time
          example: '2026-02-01T07:13:14.622520Z'
          description: When the transfer was created
        updated_at:
          type: string
          format: date-time
          example: '2026-02-01T07:18:18.355060Z'
          description: When the transfer was last updated
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Must be included in the x-api-key header.

````