---
title: "List Stablecoin Conversions"
method: GET
path: "/conversion/stablecoins"
tags: ["Stablecoin Conversion"]
deprecated: true
---

# List Stablecoin Conversions

`GET /conversion/stablecoins`

> **Deprecated.**

List all conversions, optionally filtering and paging the results.

By default, conversions are returned in reverse chronological (descending)
order by creation time. If no query parameters are supplied,
the response will include up to the last 100 conversions which
were created.

The paginated results default to display up to 100 conversions, unless
otherwise specified with the `limit` parameter. The maximum `limit` value is 1000.
Every paginated response contains a `next_page_cursor` field until the last page is reached.

Pass the `next_page_cursor` value into the `page_cursor` field of a new
request to retrieve the next page of results.

## Query parameters

- `profile_id` string
- `ref_id` string
- `created_at.begin` string, date-time
- `created_at.end` string, date-time
- `updated_at.begin` string, date-time
- `updated_at.end` string, date-time
- `order` 'DESC' | 'ASC'
- `page_cursor` string
- `limit` integer

## Response `200`

A successful response.

- ListStablecoinConversionsResponse
  - `items` StablecoinConversion[]
    - `id` string — System provided UUID for the conversion is provided in the [Create Stablecoin Conversion](#operation/CreateStablecoinConversion) response. Required parameter for the [Get Stablecoin Conversion](#operation/GetStablecoinConversion) request.
    - `profile_id` string — The Profile associated with a conversion. Required in the [Create Stablecoin Conversion](#operation/CreateStablecoinConversion) request.
    - `amount` string, decimal — Asset amount to convert. [Details](https://docs.paxos.com/developer/convert#assets).
    - `source_asset` string — The asset to convert from. [Details](https://docs.paxos.com/developer/convert#assets).
    - `target_asset` string — The asset to convert to. [Details](https://docs.paxos.com/developer/convert#assets).
    - `status` string — The current status of the conversion. [Details](https://docs.paxos.com/developer/convert#stablecoin-conversion-statuses).
    - `ref_id` string — Client provided, unique Reference ID included the [Create Stablecoin Conversion](#operation/CreateStablecoinConversion) request.
    - `identity_id` string — The Identity ID associated with the user requesting the conversion. Required only for customers with [3rd-Party integrations](/crypto-brokerage/ledger-type#fiat-and-crypto-subledger).
    - `account_id` string — The Account ID associated with the user requesting the conversion. Required only for customers with [3rd-Party integrations](/crypto-brokerage/ledger-type#fiat-and-crypto-subledger).
    - `created_at` string, date-time — The time at which the conversion was requested. See RFC3339 format, like `2006-01-02T15:04:05Z`.
    - `updated_at` string, date-time — The time at which the conversion was last updated. RFC3339 format, like `2006-01-02T15:04:05Z`.
    - `settled_at` string, date-time — The time at which the conversion was settled. [Details](https://docs.paxos.com/developer/convert#stablecoin-conversion-statuses). RFC3339 format, like `2006-01-02T15:04:05Z`.
    - `cancelled_at` string, date-time — The time at which the conversion has been cancelled. [Details](https://docs.paxos.com/developer/convert#stablecoin-conversion-statuses). RFC3339 format, like `2006-01-02T15:04:05Z`.
    - `metadata` object — Optional client-specified stored metadata.
    - `recipient_profile_id` string — For directed settlement, the receiving side `profile_id`.
  - `next_page_cursor` string — Cursor token required for fetching the next page.

## Other responses

- `403` — Forbidden

---

[API](https://skmtc.net/paxos/apis/paxos-api.md) · [All operations](https://skmtc.net/paxos/apis/paxos-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paxos/paxos-api/revisions/0687ca8c9a8d/schema)
