GET
/
core
/
assets
/
{asset}
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/assets/{asset} \
  --header 'Authorization: Bearer <token>'
{
"asset": {
"code": "BTC",
"name": "Bitcoin",
"type": "crypto",
"symbol": "₿",
"decimals": 8,
"logo": "https://cdn.uphold.com/assets/BTC.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.

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.

The response is of type object.

GET
/
core
/
assets
/
{asset}
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/assets/{asset} \
  --header 'Authorization: Bearer <token>'
{
"asset": {
"code": "BTC",
"name": "Bitcoin",
"type": "crypto",
"symbol": "₿",
"decimals": 8,
"logo": "https://cdn.uphold.com/assets/BTC.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.

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.

The response is of type object.