Skip to main content
GET
/
api
/
crypto
Fetch crypto market data
curl --request GET \
  --url https://api.useblueprints.ai/api/crypto \
  --header 'Authorization: Bearer <token>'
{
  "error": {
    "message": "<string>"
  },
  "message": "<string>"
}

Authorizations

Authorization
string
header
default:bp_YOUR_API_KEY
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

symbol
string

Crypto symbol to fetch.

type
enum<string>

Response mode. Omit for a current symbol summary.

Available options:
trades,
klines,
symbols
interval
string

Kline interval when type is klines.

limit
integer

Maximum number of points or symbols to return. Keep requests small and avoid polling large result sets.

Required range: 1 <= x <= 100
query
string

Symbol search query when type is symbols.

Response

Crypto symbol search, summary, or time-series data.