Fetch crypto market data
curl --request GET \
--url https://api.useblueprints.ai/api/crypto \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useblueprints.ai/api/crypto', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.useblueprints.ai/api/crypto"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"error": {
"message": "<string>"
},
"message": "<string>"
}{
"error": {
"message": "<string>"
},
"message": "<string>"
}Market data
Fetch crypto market data
Fetch supported crypto symbols, recent trade/price series, or kline data for strategy inputs. API keys need the market_data:read scope.
GET
/
api
/
crypto
Fetch crypto market data
curl --request GET \
--url https://api.useblueprints.ai/api/crypto \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useblueprints.ai/api/crypto', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.useblueprints.ai/api/crypto"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"error": {
"message": "<string>"
},
"message": "<string>"
}{
"error": {
"message": "<string>"
},
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Crypto symbol to fetch.
Response mode. Omit for a current symbol summary.
Available options:
trades, klines, symbols Kline interval when type is klines.
Maximum number of points or symbols to return. Keep requests small and avoid polling large result sets.
Required range:
1 <= x <= 100Symbol search query when type is symbols.
Response
Crypto symbol search, summary, or time-series data.