> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anchorage.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Track conversion status

> Query conversion history and filter the transactions endpoint.

Follow conversions with two endpoints: `/v2/stablecoins/history` for one record per conversion, and `/v2/transactions` for the underlying ledger entries. For the status vocabulary and key terms, see [Operate](/knowledge-base/platform/developers/stablecoins/operate).

## Query conversion history

**`GET /v2/stablecoins/history`** — [Reference](https://developers.anchorage.com/reference/getstablecoinhistory)

Returns one record per conversion with status, asset types, wallet IDs, and pointers to the underlying transactions. Results are paginated, ordered newest first. Requires the `Convert Stablecoins` permission.

| Parameter       | Description                                                                                   |
| :-------------- | :-------------------------------------------------------------------------------------------- |
| `limit`         | 1–100, default 100.                                                                           |
| `lastCreatedAt` | Pagination cursor—RFC3339 timestamp from `createdAt` of the last record on the previous page. |

```json Example response theme={null}
{
  "data": [
    {
      "amount": "100.80",
      "authorizationOperationId": "auth_op_01HX...",
      "createdAt": "2026-05-01T22:51:00.082Z",
      "destinationAssetTypeId": "PYUSD",
      "destinationOperationId": "tx_01HX...",
      "destinationWalletId": "wallet_01HX...",
      "issueRedeemId": "ir_01HX...",
      "operationType": "MINT",
      "sourceAssetTypeId": "USD",
      "sourceOperationId": "tx_01HX...",
      "sourceWalletId": "wallet_01HX...",
      "status": "EXECUTING",
      "subStatus": null
    }
  ],
  "page": {
    "next": "<next page url>"
  }
}
```

`page.next` is a fully formed URL for the next page, or `null` when exhausted. Alternatively, paginate manually with `lastCreatedAt` set to the `createdAt` of the last record from the prior page.

To drill into a specific transaction, pass `sourceOperationId` or `destinationOperationId` to `GET /v2/transactions/{transactionId}` for the blockchain hash, fee, and confirmation details.

## Filter the transactions endpoint

**`GET /v2/transactions`** — [Reference](https://developers.anchorage.com/reference/gettransactions)

```
GET /v2/transactions?types=MINT,BURN&walletId={stablecoinWalletId}&startDate=2026-05-01&endDate=2026-05-31&limit=100
```

| Parameter               | Description                                                                       |
| :---------------------- | :-------------------------------------------------------------------------------- |
| `types`                 | Comma-separated types. Stablecoin values: `MINT`, `BURN`, `DEPOSIT`, `TRANSFER`.  |
| `walletId`              | Filter to a specific wallet; omit for all wallets in the org.                     |
| `startDate` / `endDate` | Inclusive UTC date range, `YYYY-MM-DD`. Earliest valid `startDate`: `2017-01-01`. |
| `limit`                 | 1–100, default 25.                                                                |
| `afterId`               | Pagination cursor from the prior response's `page.next`.                          |

## Changelog

### 2026-05-01

**Added:** `GET /v2/stablecoins/history`—query mints, burns, and bridges with status, asset, wallet, and pointers to the underlying transactions.
