Skip to main content
GET
/
v1
/
baas
/
transfers
/
{transfer_id}
Get Transfer Status
curl --request GET \
  --url https://api-sandbox.y.uno/v1/baas/transfers/{transfer_id}
{
  "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"
}

Path parameters

transfer_id
string
required
The transfer identifier.

Response

Returns the transfer object with the same schema as the Initiate Transfer response, reflecting the current status.
{
  "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"
}