---
title: "Get an Inbound Transfer"
method: GET
path: "/v1/inbound_transfers/{id}"
tags: ["inboundTransfers"]
---

# Get an Inbound Transfer

`GET /v1/inbound_transfers/{id}`

Get an inbound transfer by its unique identifier.

## Path parameters

- `id` string, required

## Response `200`

The inbound transfer was retrieved

- InboundTransfer — An inbound transfer represents a transfer of funds from an external bank account to a financial account.
  - `id` string, required — The unique identifier for the inbound transfer
  - `amount` integer, required — The amount of the inbound transfer in minor currency units (cents). This amount must be positive.
  - `description` string — An arbitrary string attached to the object. Often useful for displaying to users.
  - `status` 'pending' | 'completed' | 'canceled' | 'failed' — The status of the inbound transfer. An Inbound Transfer is `pending` if it created and the funds haven't been received yet. The status changes to `completed` when the funds have been received and the balance of the financial account has been updated. The status changes to `canceled` if the transfer is canceled. The status changes to `failed` if the transfer fails.
  - `created_at` string, date-time, required — The date and time the inbound transfer was created
  - `updated_at` string, date-time — The date and time the inbound transfer was last updated

## Other responses

- `400` — The request is invalid or contains invalid parameters
- `401` — Unauthorized. The request is missing the security (OAuth2 Bearer token) requirements and the server is unable to verify the identify of the caller.
- `403` — Access denied
- `404` — Resource Not Found
- `500` — Internal Server Error

## Changes

- **2026-06-25** `832437736659` — 20 breaking, 25 info
  - removed the required property `code` from the response with the `400` status
  - removed the required property `code` from the response with the `401` status
  - removed the required property `code` from the response with the `403` status
  - removed the required property `code` from the response with the `404` status
  - …41 more

[Change history](https://skmtc.dev/chariot-giving/apis/specs/changes/v1/inbound_transfers/:id/get.md)

---

[API](https://skmtc.dev/chariot-giving/apis/specs.md) · [All operations](https://skmtc.dev/chariot-giving/apis/specs/llms.txt) · [OpenAPI document](https://skmtc.dev/chariot-giving/apis/specs/revisions/f305f0c14ede?raw)
