# Get settlement by ID

API to fetch a first party payout (settlement to our customer) with enhanced v1 response format.

Endpoint: GET /v1/collections/settlements/{settlement_id}
Version: 1.0.0
Security: Bearer

## Path parameters:

  - `settlement_id` (string, required)
    Unique identifier of the settlement to retrieve
    Example: "63dd59dd-88be-41a2-a246-2f6724209422"

## Response 200 fields (application/json):

  - `id` (string, required)
    Unique identifier for the settlement
    Example: "63dd59dd-88be-41a2-a246-2f6724209422"

  - `source_account_id` (string, required)
    Source account the settlement was drawn from
    Example: "c3d4e5f6-a7b8-9012-cdef-234567890123"

  - `currency` (string, required)
    Currency code for the settlement
    Example: "USD"

  - `gross_amount` (string, required)
    Total settlement amount before fees
    Example: "50.00"

  - `settlement_amount` (string, required)
    Net settlement amount after fees
    Example: "49.50"

  - `fees` (object, required)
    Fees applied to the settlement
    Example: {"transaction_fees":"0.50"}

  - `fees.transaction_fees` (string, required)
    Total transaction fees applied to the settlement, as a string to preserve precision
    Example: "0.50"

  - `status` (string, required)
    Settlement status
    Enum: "PENDING", "PROCESSING", "COMPLETED", "FAILED", "CANCELLED"

  - `data` (object, required)
    Settlement execution data — carries the bank transaction reference numbers (fiat) or the on-chain transaction hash (crypto), plus the configured payout destination.

  - `data.transaction_reference_numbers` (array)
    Bank transaction reference numbers; populated for fiat settlements after completion
    Example: ["ABC12345"]

  - `data.transaction_hash` (string)
    On-chain transaction hash; populated for crypto settlements after completion
    Example: "0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF"

  - `data.payout_destination` (object, required)
    Configured payout destination for a settlement, discriminated by type (the payment rail).
Fiat settlements use FEDWIRE / ACH / RTP / PIX; crypto settlements use BLOCKCHAIN.

  - `created_at` (string, required)
    ISO 8601 timestamp when the settlement was created
    Example: "2025-09-18T22:54:00.542Z"

  - `updated_at` (string, required)
    ISO 8601 timestamp when the settlement was last updated
    Example: "2025-09-18T22:54:00.542Z"

## Response 400 fields (application/json):

  - `code` (string, required)
    Error code identifying the type of error

  - `reason` (string, required)
    Human-readable error message


