GET
/
core
/
assets
/
{asset}
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/assets/{asset} \
  --header 'Authorization: Bearer <token>'
{
  "asset": {
    "type": "crypto",
    "code": "BTC",
    "name": "Bitcoin",
    "symbol": "₿",
    "decimals": 8,
    "logo": "https://cdn.uphold.com/assets/BTC.svg",
    "features": [
      "buy",
      "deposit",
      "sell",
      "transfer",
      "withdraw"
    ]
  }
}

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 multi-get endpoint.

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Path Parameters

asset
string
required

The asset code.

Minimum length: 1

Response

200
application/json
Asset retrieved.
asset
object
required