> ## Documentation Index
> Fetch the complete documentation index at: https://yn-c9bb3266.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Transfer Status

> Check the current status of a BaaS transfer

## Path parameters

<ParamField path="transfer_id" type="string" required>
  The transfer identifier.
</ParamField>

## Response

Returns the transfer object with the same schema as the [Initiate Transfer](/api-reference/baas/create-transfer) response, reflecting the current status.

<ResponseExample>
  ```json 200 OK — Completed theme={"theme":{"light":"github-dark","dark":"github-dark"}}
  {
    "id": "xfer_880e8400-e29b-41d4-a716-446655440000",
    "account_id": "550e8400-e29b-41d4-a716-446655440000",
    "source_entity_id": "ent_660e8400-e29b-41d4-a716-446655440000",
    "destination_entity_id": "ent_770e8400-e29b-41d4-a716-446655440001",
    "amount": 250.00,
    "currency": "USD",
    "status": "COMPLETED",
    "payment_rail": "ACH_SAME_DAY",
    "reference": "invoice_2026_001",
    "created_at": "2026-02-01T16:00:00Z",
    "updated_at": "2026-02-01T18:30:00Z"
  }
  ```

  ```json 404 Not Found theme={"theme":{"light":"github-dark","dark":"github-dark"}}
  {
    "code": "TRANSFER_NOT_FOUND",
    "messages": ["Transfer not found"],
    "http_code": 404
  }
  ```
</ResponseExample>
