latestOpenAPI 3.0.32026-08-224982,0272.8 MB

e445c15e5bee

Stablecoin

List supported assets

Returns a list of assets.

get/api/stablecoin/v1/assets

Query parameters

idsstring uuid
Example:d1c27189-764c-4197-af06-e2623658f410

Unique identifier for the asset.

tokenstring
Example:eth:usd1

Token symbol or identifier for the stablecoin.

chainstring
Example:eth

Blockchain network or chain name where the asset exists.

baseAssetstring
Example:usd1

Base asset type to filter by.

isIssuedByBitgoboolean

Flag to filter assets based on whether they were issued by BitGo.

isEnabledGloballyboolean

Filter assets by global enabled status for mint/burn operations.

Response

OK

idstring uuid required

Unique identifier for the asset.

tokenstring required

Token symbol

namestring required

Human-readable name of the token

decimalsnumber required

Number of decimal places for token precision

isIssuedByBitgoboolean required

Flag indicating if BitGo issued this token

baseAsset'gousd' | 'usd1' | 'sofid' | 'cusd' | 'fyusd' | 'qxmp' | 'scaasacme' | 'usd' required

Base asset for the token

reserveManagementType'bitgo_managed' | 'issuer_managed' | 'bitgo_and_issuer_managed'

How the reserve backing this stablecoin is managed. Absent for fiat USD and other non-stablecoin assets that have no corresponding base_asset row.

chainstring

Blockchain network identifier for the token

backingAssetstring

Token that provides backing value

treasuryAccountWalletIdstring uuid

Unique identifier for the treasury account

minimumLimitnumber

Minimum order amount for mint and burn orders, in full units (deprecated, use minimumMintAmount and minimumBurnAmount)

minimumMintAmountstring

Minimum order amount for mint orders, in base units

minimumBurnAmountstring

Minimum order amount for burn orders, in base units

burnFeeBpsnumber

Resolved burn fee rate in basis points for this enterprise using the enterprise → org → base_asset hierarchy. Defaults to 0 when no fee hierarchy row exists in the DB for this base asset.

mintFeeBpsnumber

Resolved mint fee rate in basis points for this enterprise using the enterprise → org → base_asset hierarchy. Defaults to 0 when no fee hierarchy row exists in the DB for this base asset.

publicDescriptionstring nullable

Public-facing description of the base asset

publicTaglinestring nullable

Public-facing tagline of the base asset

publicMarketingUrlstring nullable

Public-facing URL of the base asset

Example response

[
  {
    "id": "d1c27189-764c-4197-af06-e2623658f410",
    "token": "eth:usd1",
    "name": "USD1",
    "decimals": 18,
    "baseAsset": "usd1",
    "reserveManagementType": "bitgo_managed",
    "chain": "eth",
    "backingAsset": "fiatusd",
    "treasuryAccountWalletId": "37c60261db7cbfdfab26b9156eabcdef",
    "minimumLimit": 100,
    "minimumMintAmount": "'10000'",
    "minimumBurnAmount": "'10000'",
    "burnFeeBps": 25,
    "publicDescription": "\"A stablecoin backed by US dollar reserves\"",
    "publicTagline": "\"The stablecoin for global payments\"",
    "publicMarketingUrl": "\"https://example.com/stablecoin\""
  }
]