Header
Pass the key in theAuthorization header:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use a CryptoQuant API key to access Indicator API series endpoints.
Authorization header:
GET /api/equities/KRX:005930/pbr-band?limit=1&order=desc HTTP/1.1
Host: alpha.cryptoquant.com
Authorization: Bearer <YOUR_API_KEY>
curl -X GET "https://alpha.cryptoquant.com/api/equities/KRX:005930/pbr-band?limit=1&order=desc" \
-H "Authorization: Bearer <YOUR_API_KEY>"
const response = await fetch(
"https://alpha.cryptoquant.com/api/equities/KRX:005930/pbr-band?limit=1&order=desc",
{
headers: {
Authorization: "Bearer <YOUR_API_KEY>",
},
}
);
const json = await response.json();
import requests
url = "https://alpha.cryptoquant.com/api/equities/KRX:005930/pbr-band"
headers = {"Authorization": "Bearer <YOUR_API_KEY>"}
params = {"limit": 1, "order": "desc"}
response = requests.get(url, headers=headers, params=params)
data = response.json()
GET https://alpha.cryptoquant.com/api
GET https://alpha.cryptoquant.com/api/consensus
GET https://alpha.cryptoquant.com/api/equities
GET https://alpha.cryptoquant.com/api/indicators