Links

Assets

Cryptowatch asset endpoints
An asset is something that is traded, like a crypto or fiat currency.
Parameter
Type
Example
id
Integer
60
symbol
String
"btc"
name
String
"Bitcoin"
fiat
Boolean
false

Example

curl "https://api.cryptowat.ch/assets/btc"
{
"id": 60,
"symbol": "btc",
"name": "Bitcoin",
"fiat": false,
"markets": [...] // Array of all BTC/___ markets in our system
}
Last modified 3yr ago