v5

OpenAPI 3.1.0Proprietary2026-08-011476181.4 MB
Stablecoins

List stablecoin issuer operations

List issuer mint and burn operations for a stablecoin, most recent first, with cursor pagination.

get/stablecoins/{stablecoinId}/operations

Query parameters

operationType'MINT' | 'BURN'

Stablecoin issuer operation type.

Filter operations by type. When omitted, both mints and burns are returned.

limitinteger

Maximum number of results to return (default 20, max 100)

cursorstring

Opaque cursor returned as nextCursor from the previous response.

Response

Successful operation

hasMoreboolean required

Indicates if more results are available beyond this page.

nextCursorstring

Cursor to retrieve the next page of results.

totalCountinteger

Total number of stablecoin operations matching the query.

Example response

{
  "data": [
    {
      "id": "StablecoinOperation:019542f5-b3e7-1d02-0000-000000000301",
      "stablecoinId": "Stablecoin:019542f5-b3e7-1d02-0000-000000000002",
      "amount": "1000000",
      "stablecoinProviderAccountId": "StablecoinProviderAccount:019542f5-b3e7-1d02-0000-000000000001",
      "source": {
        "type": "ACH_DEBIT",
        "externalAccountId": "ExternalAccount:019542f5-b3e7-1d02-0000-000000000101",
        "accountId": "InternalAccount:019542f5-b3e7-1d02-0000-000000000102",
        "sourceTokenIdentifier": "USDC",
        "cryptoNetwork": "SOLANA"
      },
      "fundingInstructions": {
        "rail": "SPARK",
        "network": "SPARK",
        "address": "spark1...",
        "valueType": "ACME"
      },
      "destination": {
        "accountId": "ExternalAccount:019542f5-b3e7-1d02-0000-000000000205"
      },
      "estimatedDelivery": {
        "rail": "ACH_CREDIT",
        "amount": "100",
        "currency": "USD",
        "timing": "1-3 business days"
      },
      "expiresAt": "2026-05-27T16:40:00Z",
      "providerStatus": "pending",
      "failureReason": "PROVIDER_TRANSFER_FAILED",
      "description": "Initial program funding mint",
      "createdAt": "2026-05-20T16:40:00Z",
      "updatedAt": "2026-05-20T17:10:00Z"
    }
  ]
}