> ## 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.

# Create transfer

> Move USDC between Docent venues.

Send `amount` as a USDC decimal string with up to 6 decimals, such as `"1.25"`.

Cross-chain or cross-bucket transfers must be at least `$1.00`. Internal Hyperliquid spot-to-perpetuals transfers are exempt.

Poll `GET /v1/transfers?transferId=...` to track status.


## OpenAPI

````yaml POST /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:
    post:
      tags:
        - Transfers
      summary: Create transfer
      description: >-
        Move USDC between Docent venues. Send `amount` as a decimal USDC string
        with up to 6 decimals. Cross-chain or cross-bucket transfers must be at
        least `$1.00`. Internal Hyperliquid spot-to-perpetuals transfers are
        exempt. External withdrawals to arbitrary addresses are not supported.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TransferRequest'
      responses:
        '202':
          description: Transfer accepted for asynchronous execution
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransferResponse'
        '400':
          description: Invalid route or amount
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    TransferRequest:
      type: object
      required:
        - source
        - destination
        - amount
      properties:
        source:
          type: string
          enum:
            - evm
            - polymarket_safe
            - hypercore_spot
            - hypercore_perps
          description: Source venue ID
        destination:
          type: string
          enum:
            - evm
            - polymarket_safe
            - hypercore_spot
            - hypercore_perps
          description: Destination venue ID
        amount:
          type: string
          description: Amount in USDC as a decimal string with up to 6 decimals
          pattern: ^(?:\d+(?:\.\d{0,6})?|\.\d{1,6})$
          example: '1.25'
    TransferResponse:
      type: object
      required:
        - success
        - transferId
      properties:
        success:
          type: boolean
          example: true
        transferId:
          type: string
          description: Transfer ID for polling via `GET /v1/transfers`
    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_...`

````