API Documentation

To begin accessing our cryptocurrency market data, you'll need to connect to the API through the designated endpoint URL.

URL: https://access.ccdb.waexservices.com

The authentication for the API calls is done through the header, here is an example of a session based authentication call:

curl -X GET "http://example.com/api/v1/crypto/aggregation-tasks/1" \
     -H "Cookie: session_cookie_value"  \
     -H "csrf_token: your_csrf_token_here"

And here is an example of a token access authentication call:

curl -X GET "https://example.com/api/v1/crypto/candle-sticks?limit=100&rangeDateStart=2024-10-10T00%3A00%3A00.000Z&rangeDateEnd=2024-10-10T23%3A59%3A00.000Z&exchangeNames[]=Bitfinex&symbol=BTC%2FUSDT&orderBy=DESC" \
     -H "access_token: your_access_token"

In the following sections, you'll find documentation for each of our API endpoints that includes the required parameters, and example requests and responses.

Last updated