Kraken Embed
List Assets
Get a list of all available assets for trading on Kraken Embed, with optional filtering and pagination.
get/v1/kraken_embed/assets
Query parameters
filter[user]string
filter[assets]string[]
filter[tradable_only]boolean nullable
quotestring
sort'trending' | 'market_cap_rank' | '-market_cap_rank' | 'symbol' | '-symbol' | 'name' | '-name' | 'change_percent_1h' | '-change_percent_1h' | 'change_percent_24h' | '-change_percent_24h' | 'change_percent_7d' | '-change_percent_7d' | 'change_percent_30d' | '-change_percent_30d' | 'change_percent_1y' | '-change_percent_1y' | 'listing_date' | '-listing_date'
Sorting options for the asset list endpoint.
page[size]integer
page[number]integer
langstring
Headers
privy-app-idstring required
ID of your Privy app.
Response
List of available assets with pagination information.
Example response
{
"data": {
"error": [],
"errors": [],
"result": {
"assets": [
{
"change_percent_1h": "0.50",
"change_percent_1y": "150.00",
"change_percent_24h": "2.30",
"change_percent_30d": "12.50",
"change_percent_7d": "5.20",
"circulating_supply": "19500000.00",
"circulating_supply_value": "1287000000000.00",
"decimals": 8,
"disabled_against": [],
"display_decimals": 8,
"english_name": "Bitcoin",
"id": "BTC",
"links": {
"logo": {
"height": 400,
"href": "https://assets.privy.io/kraken_embed/logos/BTC.webp",
"type": "image/webp",
"width": 400
},
"self": {
"href": "/assets/BTC?lang=en"e=USD",
"type": "application/json"
}
},
"market_cap_rank": 1,
"market_cap_value": "1300000000000.00",
"max_supply": "21000000.00",
"max_supply_value": "1386000000000.00",
"platform_status": "enabled",
"price": "66000.00",
"total_supply": "19500000.00",
"total_supply_value": "1287000000000.00",
"volume_value_24h": "35000000000.00"
}
],
"links": {
"first": "/b2b/assets?page[size]=50&page[number]=1",
"last": "/b2b/assets?page[size]=50&page[number]=3",
"next": "/b2b/assets?page[size]=50&page[number]=2",
"prev": null,
"self": "/b2b/assets?page[size]=50&page[number]=1"
},
"meta": {
"page_number": 1,
"page_size": 50,
"total_items": 150,
"total_pages": 3
}
}
}
}