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

# Get transfer

> Check the status of a transfer by ID.

Use this endpoint to poll a transfer after you create it with `POST /v1/transfers`.

Pass the `transferId` query parameter from the create response. The response includes both `amount` as a decimal USDC string and `amountBaseUnits` as the exact 6-decimal base-unit string.


## OpenAPI

````yaml GET /v1/transfers
openapi: 3.1.0
info:
  title: Docent API
  description: >-
    REST API for programmatic trading on Hyperliquid and Polymarket via Docent.
    Create API agents, fund a dedicated wallet, place trades, check balances,
    and move funds between venues with API keys.
  version: 1.0.0
  contact:
    email: support@trydocent.com
servers:
  - url: https://api.trydocent.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Auth
    description: Registration, key management, and auth status
  - name: Balances
    description: Unified balance across all trading venues
  - name: Positions
    description: Open positions on Hyperliquid and Polymarket
  - name: Markets
    description: Market metadata and search
  - name: Orders
    description: Place orders on Hyperliquid perpetuals, spot, and Polymarket
  - name: Transfers
    description: Move funds between trading venues
  - name: Actions
    description: Poll workflow execution status
  - name: Strategies
    description: Coming soon. Reserved for future strategy endpoints.
paths:
  /v1/transfers:
    get:
      tags:
        - Transfers
      summary: Get transfer
      description: >-
        Returns the status of a transfer created through the API. Poll this
        after `POST /v1/transfers` until the transfer reaches `completed` or
        `failed`.
      parameters:
        - name: transferId
          in: query
          required: true
          description: Transfer ID returned by `POST /v1/transfers`
          schema:
            type: string
      responses:
        '200':
          description: Transfer status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransferDetails'
        '400':
          description: Missing or invalid transferId
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Transfer not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    TransferDetails:
      type: object
      required:
        - id
        - workflowId
        - source
        - destination
        - sourceChain
        - amount
        - amountBaseUnits
        - status
        - triggeredBy
        - providerState
        - txHashes
        - errorMessage
        - createdAt
        - updatedAt
        - completedAt
      properties:
        id:
          type: string
        workflowId:
          type: string
          nullable: true
        source:
          type: string
          enum:
            - evm
            - polymarket_safe
            - hypercore_spot
            - hypercore_perps
        destination:
          type: string
          enum:
            - evm
            - polymarket_safe
            - hypercore_spot
            - hypercore_perps
        sourceChain:
          type: string
          nullable: true
          description: Resolved source chain when the transfer path uses one
          enum:
            - arbitrum
            - polygon
        amount:
          type: string
          description: Amount as a decimal USDC string
          example: '1.25'
        amountBaseUnits:
          type: string
          description: Amount as the exact 6-decimal base-unit string
          example: '1250000'
        status:
          type: string
          enum:
            - processing
            - completed
            - failed
        triggeredBy:
          type: string
          enum:
            - user
            - auto
        providerState:
          type: object
          nullable: true
          additionalProperties: true
          description: >-
            Provider-specific execution details for debugging and status
            reporting
        txHashes:
          type: array
          items:
            type: string
        errorMessage:
          type: string
          nullable: true
        createdAt:
          type: number
        updatedAt:
          type: number
        completedAt:
          type: number
          nullable: true
    Error:
      type: object
      required:
        - error
        - code
      properties:
        error:
          type: string
          description: Human-readable error message
        code:
          type: string
          description: Machine-readable error code
          enum:
            - UNAUTHORIZED
            - FORBIDDEN
            - RATE_LIMITED
            - BAD_REQUEST
            - VALIDATION_ERROR
            - NOT_FOUND
            - ORDER_REJECTED
            - ORDER_FAILED
            - TRANSFER_FAILED
            - REGISTRATION_FAILED
            - ROTATION_FAILED
            - NOT_IMPLEMENTED
        retryAfter:
          type: number
          description: Milliseconds until rate limit resets (only on 429)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key in the format `dk_live_...`. Pass as `Authorization: Bearer
        dk_live_...`

````