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

# Create transfer



## OpenAPI

````yaml /api-reference/openapi.yaml post /transfers
openapi: 3.1.0
info:
  title: Onbeam API
  version: 1.0.0
servers:
  - url: https://api.onbeam.io
  - url: http://localhost:3004
security: []
paths:
  /transfers:
    post:
      summary: Create transfer
      operationId: createTransfer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TransferRequest'
      responses:
        '200':
          description: Transfer created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransferResponse'
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  schemas:
    TransferRequest:
      type: object
      properties:
        fromWalletId:
          type: string
        toAddress:
          type: string
        fromChainId:
          type: integer
        toChainId:
          type: integer
        token:
          type: string
        amount:
          type: string
      required:
        - fromWalletId
        - toAddress
        - fromChainId
        - toChainId
        - token
        - amount
    TransferResponse:
      type: object
      properties:
        transferId:
          type: string
        status:
          type: string
          examples:
            - pending
      required:
        - transferId
        - status
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````