Skip to main content
GET
/
asset-types
List supported asset types
curl --request GET \
  --url https://api.anchorage-staging.com/v2/asset-types \
  --header 'Api-Access-Key: <api-key>'
{
  "data": [
    {
      "assetType": "BTC",
      "name": "Bitcoin",
      "decimals": 8,
      "featureSupport": [
        "TRANSFERS",
        "HOLDS"
      ],
      "networkId": "BTC"
    },
    {
      "assetType": "ETH",
      "name": "Ethereum",
      "decimals": 18,
      "featureSupport": [
        "TRANSFERS",
        "HOLDS"
      ],
      "networkId": "ETH"
    },
    {
      "assetType": "USDC",
      "name": "USD Coin",
      "decimals": 6,
      "featureSupport": [
        "TRANSFERS",
        "HOLDS"
      ],
      "networkId": "ETH"
    }
  ]
}

Authorizations

Api-Access-Key
string
header
required

An API key associated with a security role

Query Parameters

assetTypes
string[]

The asset type IDs to be used as filter for the organization asset types.

An asset type is considering to be passing this filter, if this set is not empty.

assetFeatures
enum<string>[]

The asset features to be used as filter for the organization asset types.

An asset type is considering to be passing this filter, if this set is not empty, and at least one of the features is supported by the asset type.

Available options:
TRANSFERS,
HOLDS

Response

List of supported asset types for your organization

data
AssetTypeDetails · object[]
required
Example:
[
{
"assetType": "BTC",
"name": "Bitcoin",
"decimals": 8,
"featureSupport": ["TRANSFERS", "HOLDS"],
"networkId": "BTC"
},
{
"assetType": "ETH",
"name": "Ethereum",
"decimals": 18,
"featureSupport": ["TRANSFERS", "HOLDS"],
"networkId": "ETH"
},
{
"assetType": "USDC",
"name": "USD Coin",
"decimals": 6,
"featureSupport": ["TRANSFERS", "HOLDS"],
"networkId": "ETH"
}
]