---
title: "List conversions"
method: GET
path: "/v1/conversions"
tags: ["Conversions"]
---

# List conversions

`GET /v1/conversions`

Returns a paginated list of conversions.

## Query parameters

- `limit` integer
- `cursor` string
- `status` 'pending' | 'completed' | 'failed'
- `source_currency` 'EUR' | 'GBP' | 'USD' | 'USDC'
- `target_currency` 'EUR' | 'GBP' | 'USD' | 'USDC'

## Response `200`

List of conversions

- ListConversionsResponseDto
  - `data` object[], required
    - `id` string, uuid, required — Unique identifier of the conversion.
    - `quote_id` string, uuid, nullable, required — ID of the associated quote, or null.
    - `type` 'conversion', required — Resource type discriminator.
    - `status` 'pending' | 'completed' | 'failed', required — Current status of the conversion.
    - `source_amount` string, required — Source amount as a string decimal.
    - `source_currency` 'EUR' | 'GBP' | 'USD' | 'USDC', required — Source currency code.
    - `target_currency` 'EUR' | 'GBP' | 'USD' | 'USDC', required — Target currency code.
    - `source_account_id` string, nullable, required — ID of the source account, or null.
    - `target_account_id` string, nullable, required — ID of the target account, or null.
    - `failure` object, nullable, required — Failure details when status is failed, otherwise null.
      - `message` string, required — Human-readable description of the failure.
    - `metadata` object, required — Key-value pairs stored with the conversion.
    - `created_at` string, date-time, required — ISO 8601 UTC timestamp when the conversion was created.
    - `updated_at` string, date-time, required — ISO 8601 UTC timestamp when the conversion was last updated.
    - `completed_at` string, date-time, nullable, required — ISO 8601 UTC timestamp when the conversion completed, or null.
  - `has_more` boolean, required
  - `next_cursor` string, nullable, required

## Changes

- **2026-08-17** `3ed0a0aba68b` — 8 breaking, 8 info
  - removed the enum value `BTC` from the `query` request parameter `source_currency`
  - removed the enum value `BTC` from the `query` request parameter `target_currency`
  - removed the enum value `ETH` from the `query` request parameter `source_currency`
  - removed the enum value `ETH` from the `query` request parameter `target_currency`
  - …12 more
- **2026-07-13** `d92a4abea6c4` — 6 warning, 6 info
  - added the new `ETH` enum value to the `data/items/source_currency` response property for the response status `200`
  - added the new `ETH` enum value to the `data/items/target_currency` response property for the response status `200`
  - added the new `POL` enum value to the `data/items/source_currency` response property for the response status `200`
  - added the new `POL` enum value to the `data/items/target_currency` response property for the response status `200`
  - …8 more
- **2026-06-17** `74deb4d45f9f` — 2 warning, 2 info
  - added the new `BTC` enum value to the `data/items/source_currency` response property for the response status `200`
  - added the new `BTC` enum value to the `data/items/target_currency` response property for the response status `200`
  - added the new enum value `BTC` to the `query` request parameter `source_currency`
  - added the new enum value `BTC` to the `query` request parameter `target_currency`
- …earlier changes not shown

[Full history](https://skmtc.dev/augustus/apis/augustus-banking-api/changes/v1/conversions/get.md)

---

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