---
title: "Get transfer detail"
method: GET
path: "/api/transfers/{id}"
tags: ["Transfers"]
---

# Get transfer detail

`GET /api/transfers/{id}`

Retrieve a single transfer by ID. Returns 404 for any error (IDOR protection).

## Path parameters

- `id` string, uuid, required

## Headers

- `x-tenant-id` string, required

## Response `200`

Transfer detail

- TransferDetail
  - `transferId` string, uuid
  - `tenantId` string
  - `state` 'INITIATED' | 'SUBMITTED' | 'ACCEPTED' | 'SETTLED' | 'RETURNED' | 'FAILED'
  - `rail` string, nullable
  - `intent` 'AUTH' | 'CAPTURE' | 'PUSH' | 'PULL'
  - `amount` string
  - `currency` string
  - `payerRef` string, nullable
  - `payeeRef` string, nullable
  - `externalRef` string, nullable
  - `endUserRef` string, nullable
  - `createdAt` string, date-time
  - `updatedAt` string, date-time

## Other responses

- `401` — Missing or invalid authentication
- `404` — Resource not found
- `500` — Internal server error

---

[API](https://skmtc.dev/stalela/apis/stalela-transfers-api.md) · [All operations](https://skmtc.dev/stalela/apis/stalela-transfers-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stalela/stalela-transfers-api/revisions/752749e46059/schema)
