Currencies

List currencies

get
Authorizations
Query parameters
cursorstringOptional

Optional cursor to get next pages (based on the next key on query response)

searchstringOptional

Search by name, ticker

Responses
200
Successful response
application/json
get
GET /rest/assets/currencies HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "next": "text",
  "results": [
    {
      "id": "text",
      "name": "text",
      "type": "BITCOIN_LIKE",
      "units": [
        {
          "code": "text",
          "name": "text",
          "magnitude": 1
        }
      ]
    }
  ]
}