Skip to main content
GET
/
v0
/
assets
List supported assets
curl --request GET \
  --url https://api.example.com/v0/assets/
{
  "_links": {
    "kyc": {
      "description": "Submit KYC information",
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me",
      "method": "GET"
    },
    "wallets": {
      "href": "/v0/wallets",
      "method": "GET"
    }
  }
}

Headers

x-juno-jwt
string | null

Query Parameters

chain_id
integer | null

Filter by EIP-155 chain ID

asset_type
enum<string> | null

Filter by asset type (crypto, fiat) Classification of supported asset types.

  • crypto - Cryptocurrency or blockchain token (ETH, USDC, etc.)
  • fiat - Government-issued currency (USD, EUR, GBP)
Available options:
crypto,
fiat
offset
integer
default:0

Pagination offset

Required range: x >= 0
limit
integer
default:50

Maximum results per page

Required range: 1 <= x <= 100

Response

Assets retrieved successfully

Paginated list of assets.

HAL-style hypermedia links for navigation.

assets
AssetData · object[]
required

List of assets

total
integer
required

Total number of assets matching filters

offset
integer
required

Current pagination offset

limit
integer
required

Maximum results per page