Endpoint
GET https://api.llmquantdata.com/api/crypto/snapshot
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters
Required
The trading pair (e.g. BTC-USD, ETH-USD).
Response
The trading pair (e.g. BTC-USD).
Absolute price change over the last 24 hours.
Percentage price change over the last 24 hours.
Timestamp of the snapshot (ISO 8601 UTC).
Credits consumed by this call (always 1).
Remaining credits on your account.
Credits
Each call consumes 1 credit.
Code Examples
import requests
headers = {"Authorization": "Bearer YOUR_API_KEY"}
response = requests.get(
"https://api.llmquantdata.com/api/crypto/snapshot",
headers=headers,
params={"ticker": "BTC-USD"},
)
data = response.json()["data"]
print(f"{data['ticker']}: ${data['price']:,.2f} ({data['day_change_percent']:+.2f}%)")
Example Response
{
"data": {
"price": 87200.00,
"ticker": "BTC-USD",
"day_change": 1200.50,
"day_change_percent": 1.26,
"volume_24h": 12345678,
"time": "2026-03-28T12:30:00Z"
},
"meta": {
"creditsUsed": 1,
"remainingCredits": 99
}
}
Notes
- Binance Spot only — futures data is not available.
- Pure passthrough — data comes directly from Binance and is not persisted in the database.
- No bid/ask/depth — only last trade price and 24-hour statistics are returned.
- Not trading-grade real-time — reflects last trade price with optional 30s–1min memory cache.