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

# Get transfer



## OpenAPI

````yaml /api-reference/openapi.yaml get /transfers/{transferId}
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/{transferId}:
    get:
      summary: Get transfer
      operationId: getTransfer
      parameters:
        - name: transferId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Transfer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransferResponse'
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  schemas:
    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

````