---
title: "Retrieve a withdrawal"
method: GET
path: "/accounts/{account_id}/withdrawals/{withdrawal_id}"
tags: ["payments"]
---

# Retrieve a withdrawal

`GET /accounts/{account_id}/withdrawals/{withdrawal_id}`

Retrieve a withdrawal by ID.

## Path parameters

- `account_id` string, required
- `withdrawal_id` string, required

## Response `200`

OK

- Withdrawal
  - `account` string, required — The ID of the parent account.
  - `amount` string, required — The amount to withdraw.
  - `completed_at` string, date-time, nullable — The time the withdrawal was completed.
  - `created_at` string, date-time, required — The timestamp (in [ISO-8601](https://www.iso.org/iso-8601-date-and-time-format.html) format) of when the resource was created.
  - `currency` 'EUR' | 'USD' | 'GBP', required
  - `funding_account` FundingAccount, required
    - `bank_code` string, required — The bank code, such as a BIC or SWIFT code.
    - `created_at` string, date-time, required — The timestamp (in [ISO-8601](https://www.iso.org/iso-8601-date-and-time-format.html) format) of when the resource was created.
    - `currency` 'EUR' | 'USD' | 'GBP', required
    - `iban` string, required — The IBAN of the funding account.
    - `id` string, required — Unique resource identifier.
    - `is_verified` boolean — Whether ownership of the funding account is verified.
    - `modified_at` string, date-time, required — The timestamp (in [ISO-8601](https://www.iso.org/iso-8601-date-and-time-format.html) format) of when the resource was last modified.
    - `nickname` string, nullable — The user-provided nickname for the funding account.
    - `owner_name` string, required — The owner name as specified by the bank on the funding account.
  - `id` string, required — Unique resource identifier.
  - `modified_at` string, date-time, required — The timestamp (in [ISO-8601](https://www.iso.org/iso-8601-date-and-time-format.html) format) of when the resource was last modified.
  - `status` 'created' | 'completed', required

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/joinsophic/apis/sophic-engine-api.md) · [All operations](https://skmtc.net/joinsophic/apis/sophic-engine-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/joinsophic/sophic-engine-api/revisions/5b4c43e2941b/schema)
