Skip to main content
GET
/
info
/
capabilities
/
assets
Get all available asset deployments
curl --request GET \
  --url https://api.platform.dakota.xyz/info/capabilities/assets \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "USDC",
    "name": "USD Coin",
    "network_id": "ethereum-mainnet",
    "contract_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
    "token_standard": "erc20",
    "decimals": 6
  }
]

Authorizations

x-api-key
string
header
required

Query Parameters

subset
enum<string>

Specific subset of assets to fetch Predefined subset of assets to filter by specific criteria.

Available options:
rampable
Example:

"rampable"

Response

200 - application/json

Successfully retrieved the list of assets

id
string
required

The symbol of the asset (e.g., USDC, ETH)

Example:

"USDC"

name
string
required

The full name of the asset

Example:

"USD Coin"

network_id
enum<string>
required

Identifier for a blockchain network

Available options:
ethereum-mainnet,
ethereum-sepolia,
ethereum-goerli,
ethereum-holesky,
solana-mainnet,
solana-devnet,
solana-testnet,
base-mainnet,
base-sepolia,
arbitrum-mainnet,
arbitrum-sepolia,
optimism-mainnet,
optimism-sepolia,
avalanche-mainnet,
avalanche-fuji,
polygon-mainnet,
polygon-amoy
Required string length: 1 - 30
Example:

"ethereum-mainnet"

contract_address
string
required

The contract address of the asset on the network

Example:

"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"

token_standard
string
required

The token standard (e.g., erc20, spl)

Example:

"erc20"

decimals
integer
required

The number of decimal places for this asset

Example:

6