---
title: "Retrieve a payout"
method: POST
path: "/api/service/payout/retrieve"
tags: ["Payout"]
---

# Retrieve a payout

`POST /api/service/payout/retrieve`

Retrieve a payout object by id.

## Request body

- RetrieveDto
  - `id` string, required — The payout ID

## Response `200`

Retrieve a payout

- RetrieveResponseDto
  - `id` string, required — The payout ID
  - `type` 'beneficiary' | 'customer', required — The payout type
  - `destination` object, required — The payout destination
    - `type` 'iban' | 'sort_code' | 'bank_code' | 'bban' | 'wallet' | 'aba', required
    - `iban` object
      - `accountHolderName` string, required
      - `iban` string, required
      - `bic` string
    - `aba` object
      - `accountHolderName` string, required
      - `routingNumber` string, required
      - `accountNumber` string, required
    - `sortCode` object
      - `accountHolderName` string, required
      - `sortCode` string, required
      - `accountNumber` string, required
    - `bankCode` object
      - `accountHolderName` string, required
      - `code` string, required
      - `accountNumber` string, required
    - `bban` object
      - `accountHolderName` string, required
      - `bban` string, required
      - `bic` string
    - `wallet` object
      - `address` string, required — The blockchain wallet address
      - `blockchain` 'BTC' | 'BTC-TESTNET4' | 'ETH' | 'ETH-SEPOLIA' | 'SOL' | 'SOL-DEVNET' | 'MATIC' | 'MATIC-AMOY', required — The blockchain network
  - `status` 'paid' | 'pending' | 'in_transit' | 'failed' | 'canceled', required — The payout status
  - `amount` number, required — The payout amount
  - `currency` 'EUR' | 'GBP' | 'USDC' | 'USD', required — The payout currency
  - `metadata` object — The payout metadata
  - `createdAt` unknown, required
  - `updatedAt` unknown, required
  - `paymentReference` string — The payout payment reference
  - `transactionId` string — The payout transaction ID
  - `failure` object — Failure details. Only available if the payout failed.
    - `code` 'account_closed' | 'account_blocked' | 'insufficient_funds' | 'invalid_account_format' | 'invalid_instruction' | 'invalid_amount' | 'invalid_time' | 'duplicate_transaction' | 'payee_verification_failed' | 'system_error' | 'provider_system_error' | 'rejected_by_correspondent_bank' | 'blocked_by_review' | 'unknown', required — Failure code. Please refer to the documentation for the list of possible values.
    - `message` string, required — Human readable description of the failure.
    - `retry` boolean, required — If true, you can safely retry.

## Changes

- **2026-06-17** `3ed3cb51802c` — 2 warning
  - added the new `BTC` enum value to the `destination/wallet/blockchain` response property for the response status `200`
  - added the new `BTC-TESTNET4` enum value to the `destination/wallet/blockchain` response property for the response status `200`
- **2026-05-13** `b6b8b9e7e56e` — 1 warning
  - added the new `USD` enum value to the `currency` response property for the response status `200`
- **2026-05-06** `f133fdf6c9bd` — 1 info
  - added the optional property `destination/aba` to the response with the `200` status
- **2026-04-29** `84194dfc43b4` — 1 warning
  - added the new `aba` enum value to the `destination/type` response property for the response status `200`
- **2026-02-26** `e1c9b057b438` — 1 warning
  - added the new `payee_verification_failed` enum value to the `failure/code` response property for the response status `200`

[Full history](https://skmtc.dev/augustus/apis/ivy-api/changes/api/service/payout/retrieve/post.md)

---

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