GET
/
core
/
assets
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/assets \
  --header 'Authorization: Bearer <token>'
{
  "assets": [
    {
      "type": "fiat",
      "code": "GBP",
      "name": "British Pound",
      "symbol": "£",
      "decimals": 2,
      "logo": "https://cdn.uphold.com/assets/GBP.svg",
      "features": [
        "buy",
        "deposit",
        "sell",
        "transfer",
        "withdraw"
      ]
    },
    {
      "type": "crypto",
      "code": "BTC",
      "name": "Bitcoin",
      "symbol": "₿",
      "decimals": 8,
      "logo": "https://cdn.uphold.com/assets/BTC.svg",
      "features": [
        "buy",
        "deposit",
        "sell",
        "transfer",
        "withdraw"
      ]
    },
    {
      "code": "ETH",
      "name": "Ether",
      "type": "crypto",
      "symbol": "Ξ",
      "decimals": 18,
      "logo": "https://cdn.uphold.com/assets/ETH.svg",
      "features": [
        "buy",
        "sell",
        "transfer"
      ]
    },
    {
      "type": "crypto",
      "code": "USDC",
      "name": "USDC",
      "symbol": "$",
      "decimals": 6,
      "logo": "https://cdn.uphold.com/assets/USDC.svg",
      "features": [
        "buy",
        "sell",
        "transfer"
      ]
    },
    {
      "type": "crypto",
      "code": "BAT",
      "name": "BAT",
      "decimals": 18,
      "logo": "https://cdn.uphold.com/assets/BAT.svg",
      "features": [
        "buy",
        "sell",
        "transfer"
      ]
    }
  ]
}

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.

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Response

200 - application/json
Assets list retrieved.
assets
object[]
required