Wolfram Blockchain Labs
  • EchoFeed
    • Introduction
    • Registration Guide
    • Authentication & API Access Guide
    • API Documentation
      • Exchanges
      • Markets
      • Tokens
      • OrderBooks
      • Trades
      • Tickers
      • CandleSticks
        • Aggregation Tasks
      • ExchangeRates
      • MarketLogs
      • MarketRatings
      • Admin Endpoints
    • WebSocket API Documentation
    • Available Pairs
      • Centralized Exchanges
      • Decentralized Exchanges
    • Rate Limiting
  • Open-Source
    • Open Source Data Collection
    • Quick Start Guide
    • API Reference
      • Exchanges
      • Markets
      • CandleSticks
      • ExchangeRates
      • OrderBooks
      • Tickers
      • Trades
      • Aggregation
    • Price Updates
    • Community Contribution Guides
  • Resources
    • Glossary
Powered by GitBook
On this page
  1. EchoFeed

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.

PreviousAuthentication & API Access GuideNextExchanges

Last updated 6 months ago