API Documentation

⌘K
GET/api/1/crypto/list/{start}/{end}

Crypto List (Paginated) API

Returns a paginated list of all cryptocurrency identifiers. Max 2000 per request.

Parameters

2
startintegerrequired
path

Offset to start at

endintegerrequired
path

End offset

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/crypto/list/0/10' \
  -H 'Accept: application/json'
200 Response
{
  "start": 0,
  "size": 2000,
  "total": 10000,
  "results": [
    "BTC"
  ]
}