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

# Get Transfer

> Returns the details of a single transfer by ID.



## OpenAPI

````yaml GET /transfers/{id}
openapi: 3.1.0
info:
  title: Otim Platform API
  version: v0
  description: >-
    API for managing accounts, entities, transfers, counterparties, and IBANs on
    the Otim platform.
servers:
  - url: https://api.otim.com/v0
security:
  - bearerAuth: []
paths:
  /transfers/{id}:
    get:
      tags: []
      summary: Get Transfer
      description: Returns the details of a single transfer by ID.
      operationId: getTransfer
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the transfer.
      responses:
        '200':
          description: Transfer details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transfer'
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Transfer not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Transfer:
      type: object
      properties:
        id:
          type: string
          example: txfr_01JA1B2C3D4E5F6G7H8J9K0L
        sourceAccountId:
          type: string
        destinationAccountId:
          type: string
          nullable: true
        counterpartyId:
          type: string
          nullable: true
        amount:
          type: string
          example: '100.50'
        currency:
          type: string
          example: USDC
        type:
          type: string
          enum:
            - book
            - wire
            - on_chain
          example: book
        status:
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
            - cancelled
          example: completed
        direction:
          type: string
          enum:
            - outgoing
            - incoming
          example: outgoing
        description:
          type: string
          nullable: true
          example: Payment to vendor
        createdAt:
          type: string
          format: date-time
          example: '2025-01-15T12:00:00Z'
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
          description: A machine-readable error code.
        details:
          type: object
          nullable: true
          description: Additional context about the error.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key prefixed with `sk_`.

````