API Support: [email protected] | Discord
Blave is a trader-oriented, cross-exchange trading data station to provide alpha data on top of perpetual trading volume, open interest, stable yields, momentum, liquidation, sector performance, and other unique metrics.
The Blave Enterprise API provides simple and powerful endpoints to get information on aggregated crypto perpetual futures data straight from our preprocessed engine. Register Blave account to view and gain access to our data categories. The API root URL and endpoints are shown below.
All API requests are made to the base URL:
<https://api.blave.org/>
To authenticate your API requests, you must include the following headers:
Example Request Header:
api-key: YOUR_API_KEY
secret-key: YOUR_SECRET_KEY
import requests
url = "<https://api.blave.org/holder_concentration/get_alpha>"
headers = {
"api-key": "YOUR_API_KEY",
"secret-key": "YOUR_SECRET_KEY",
}
param = {"symbol": "BTCUSDT", "period": "5min"}
response = requests.get(url, headers=headers, params=param, timeout=60)
print(response.json())
Discover all available endpoints and detailed documents: