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

# Retrieve Transfer

> Retrieves a ledger transfer by ID.



## OpenAPI

````yaml /openapi/api-v1-native.yml get /transfers/{id}
openapi: 3.1.0
info:
  title: Whop API
  description: >-
    Hand-written V1 endpoints. Merged into the GraphqlRestProxy-generated schema
    at build time.
  version: v1
servers:
  - url: https://{defaultHost}
    variables:
      defaultHost:
        default: api.whop.com/api/v1
security: []
paths:
  /transfers/{id}:
    parameters:
      - $ref: '#/components/parameters/ApiVersionDate'
      - name: id
        in: path
        required: true
        schema:
          type: string
        description: The transfer ID.
    get:
      tags:
        - Transfers
      summary: Retrieve Transfer
      description: Retrieves a ledger transfer by ID.
      operationId: retrieveTransfer
      responses:
        '200':
          description: transfer retrieved
          content:
            application/json:
              schema:
                type: object
                title: Transfer
                description: A transfer of credit between two ledger accounts.
                properties:
                  id:
                    type: string
                    description: Transfer ID.
                  amount:
                    type: number
                    description: Transfer amount.
                  currency:
                    type: string
                    description: Transfer currency.
                  created_at:
                    type: string
                    format: date-time
                    description: When the transfer was created.
                  fee_amount:
                    type:
                      - number
                      - 'null'
                    description: Fee charged for the transfer.
                  notes:
                    type:
                      - string
                      - 'null'
                    description: Transfer note.
                  metadata:
                    type:
                      - object
                      - 'null'
                    additionalProperties: true
                    description: Custom metadata attached to the transfer.
                  origin_ledger_account_id:
                    type: string
                    description: Source ledger account ID.
                  destination_ledger_account_id:
                    type: string
                    description: Destination ledger account ID.
                  origin:
                    oneOf:
                      - type: object
                        title: Company
                        properties:
                          typename:
                            type: string
                            enum:
                              - Company
                          id:
                            type: string
                            description: Account ID.
                          route:
                            type:
                              - string
                              - 'null'
                            description: Account route.
                          title:
                            type:
                              - string
                              - 'null'
                            description: Account display name.
                        required:
                          - typename
                          - id
                      - type: object
                        title: User
                        properties:
                          typename:
                            type: string
                            enum:
                              - User
                          id:
                            type: string
                            description: User ID.
                          name:
                            type:
                              - string
                              - 'null'
                            description: User display name.
                          username:
                            type: string
                            description: User's username.
                        required:
                          - typename
                          - id
                    discriminator:
                      propertyName: typename
                    description: Account or user sending funds.
                  destination:
                    oneOf:
                      - type: object
                        title: Company
                        properties:
                          typename:
                            type: string
                            enum:
                              - Company
                          id:
                            type: string
                            description: Account ID.
                          route:
                            type:
                              - string
                              - 'null'
                            description: Account route.
                          title:
                            type:
                              - string
                              - 'null'
                            description: Account display name.
                        required:
                          - typename
                          - id
                      - type: object
                        title: User
                        properties:
                          typename:
                            type: string
                            enum:
                              - User
                          id:
                            type: string
                            description: User ID.
                          name:
                            type:
                              - string
                              - 'null'
                            description: User display name.
                          username:
                            type: string
                            description: User's username.
                        required:
                          - typename
                          - id
                    discriminator:
                      propertyName: typename
                    description: Account or user receiving funds.
                required:
                  - id
                  - amount
                  - currency
                  - created_at
                  - origin_ledger_account_id
                  - destination_ledger_account_id
                  - origin
                  - destination
        '404':
          $ref: '#/components/responses/NotFound'
          description: transfer not found
      security:
        - bearerAuth:
            - payout:transfer:read
components:
  parameters:
    ApiVersionDate:
      name: Api-Version-Date
      in: header
      required: false
      schema:
        type: string
        format: date
        example: '2026-07-01'
      description: Pins the request to a dated API version.
  responses:
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/V1ErrorResponse'
  schemas:
    V1ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
              description: Machine-readable error code.
            message:
              type: string
              description: Human-readable error message.
          required:
            - type
            - message
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: auth-scheme
      description: >-
        An account API key, account scoped JWT, app API key, or user OAuth
        token.

````