Authentication & Headers

All requests to our servers require a unique user specific API Key. Requests without a valid API Key will be refused. To get started, get an API Key from our website here, or continue in these docs using the API Key you obtained from your api key page.

Usage

Every request (with the exception of Websockets) requires this header: x-api-key

The request will be refused if this header is missing or an invalid API Key is provided.

Example Request:

curl --request GET \
     --url https://web3api.io/api/v2/market/spot/prices/assets/btc/latest/ \
     --header 'accept: application/json' \
     --header 'x-api-key: <api_key>'