Check if a specific asset is currently available and obtain its details

HTTP Request:

GET /available/all/{code}

HTTP Request Example:

GET /available/all/EUR
GET /available/all/USD

Common Errors:

  • 404, “ASSET_NOT_FOUND”

Example of successful response:

{
  "success": true,
  "lastUpdate": "2024-08-26T13:20:28.292761976Z",
  "data": {
    "code": "EUR",
    "name": "Euro",
    "decimalPlaces": 2,
    "symbol": "€",
    "type": "currency"
  }
}
FieldTypeDescription
“success”BooleanHTTP Request is successful, if it’s false you have to handle the error
“data”Object
“data”, “code”StringListing code of the asset
“data”, “name”StringName of the asset
“data”, “decimalPlaces”IntegerMinimum sub-unit of the asset
“data”, “symbol”StringGraphic symbol of the asset
“data”, “type”String enumKind of asset, can be currency, crypto, material