GET
/
core
/
assets
List assets
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/assets \
  --header 'Authorization: Bearer <token>'
{
"assets": [
{
"code": "GBP",
"name": "British Pound",
"type": "fiat",
"symbol": "£",
"decimals": 2,
"logo": "https://cdn.uphold.com/assets/GBP.svg",
"features": [
"buy",
"deposit",
"sell",
"transfer",
"withdraw"
],
"cooldowns": []
},
{
"code": "BTC",
"name": "Bitcoin",
"type": "crypto",
"symbol": "₿",
"decimals": 8,
"logo": "https://cdn.uphold.com/assets/BTC.svg",
"features": [
"buy",
"deposit",
"sell",
"transfer",
"withdraw"
],
"cooldowns": []
},
{
"code": "ETH",
"name": "Ether",
"type": "crypto",
"symbol": "Ξ",
"decimals": 18,
"logo": "https://cdn.uphold.com/assets/ETH.svg",
"features": [
"buy",
"deposit",
"sell",
"transfer",
"withdraw"
],
"cooldowns": []
},
{
"code": "USDC",
"name": "USDC",
"type": "crypto",
"symbol": "$",
"decimals": 6,
"logo": "https://cdn.uphold.com/assets/USDC.svg",
"features": [
"buy",
"sell",
"transfer"
],
"cooldowns": []
},
{
"code": "BAT",
"name": "BAT",
"type": "crypto",
"decimals": 18,
"logo": "https://cdn.uphold.com/assets/BAT.svg",
"features": [
"buy",
"deposit",
"sell",
"transfer",
"withdraw"
],
"cooldowns": []
}
]
}
If the authenticated subject is a user, the response will be contextualized accordingly. As an example, the features field will indicate the available features for the user.
You can retrieve several assets in a single request by using the Get Many Assets endpoint.

Sorting

You can sort the assets by using the sort query parameter. Below are the available sorting options:

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Query Parameters

sort
enum<string>
default:code:asc

Sort assets by a criterion.

Available options:
code:asc,
code:desc,
name:asc,
name:desc,
price:asc,
price:desc,
price-delta:asc:one-hour,
price-delta:asc:one-day,
price-delta:asc:one-week,
price-delta:asc:one-month,
price-delta:asc:one-year,
price-delta:desc:one-hour,
price-delta:desc:one-day,
price-delta:desc:one-week,
price-delta:desc:one-month,
price-delta:desc:one-year,
market-cap:asc,
market-cap:desc

Response

200 - application/json

Assets list retrieved.

The response is of type object.