Conversions

List conversions

Returns a paginated list of conversions.

get/v1/conversions

Query parameters

limitinteger

Number of results per page (1-100). Defaults to 10.

cursorstring

Opaque cursor from a previous next_cursor.

status'pending' | 'completed' | 'failed'

Filter by conversion status.

source_currency'EUR' | 'GBP' | 'USD' | 'USDC'
Example:EUR

Filter by source currency code.

target_currency'EUR' | 'GBP' | 'USD' | 'USDC'
Example:EUR

Filter by target currency code.

Response

List of conversions

has_moreboolean required
next_cursorstring nullable required

Example response

{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440006",
      "quote_id": "550e8400-e29b-41d4-a716-446655440007",
      "source_amount": "100.50",
      "source_currency": "EUR",
      "target_currency": "USD",
      "source_account_id": "550e8400-e29b-41d4-a716-44665544000b",
      "target_account_id": "550e8400-e29b-41d4-a716-44665544000c",
      "metadata": {
        "invoice_id": "INV-2026-0042"
      },
      "created_at": "2026-01-15T10:30:00Z",
      "updated_at": "2026-01-15T10:35:00Z",
      "completed_at": "2026-01-15T10:36:00Z"
    }
  ],
  "next_cursor": "eyJsYXN0X2lkIjoiNTUwZTg0MDAtZTI5Yi00MWQ0LWE3MTYtNDQ2NjU1NDQwMDA2In0"
}

Changes