CryptoHFTData developer sandbox

Test the API without credentials

CryptoHFTData's public v1 status, symbol-discovery, and anonymous download operations form a live, read-only sandbox. They cannot place orders, change account state, or access private user data. The sandbox uses the production response schema and real public archive, so an agent can validate request construction and error handling before a user creates an account or supplies an API key.

Zero-auth sandbox calls

Check ingestion status

Returns a typed JSON health snapshot. No account, API key, or state change is involved.

curl https://api.cryptohftdata.com/v1/status

Discover archived symbols

Returns the current symbol registry for a venue and data family without credentials.

curl "https://api.cryptohftdata.com/v1/symbols?exchange=binance_spot&data_type=trades"

Test an anonymous file request

Exercises the same immutable read path used by authenticated clients. Anonymous requests are limited to 60 per minute per client IP.

curl -OJ "https://api.cryptohftdata.com/v1/download?file=binance_spot/2025-08-01/20/BTCUSDT_trades.parquet"

Sandbox behavior

  • Responses use the same OpenAPI 3.1 schemas as stable v1.
  • API failures include a human-readable error and a machine-readable code.
  • Download responses expose RateLimit,RateLimit-Policy, remaining quota, and reset timing. HTTP 429 also includes Retry-After.
  • Real archive availability varies. Discover symbols and check status before treating a missing file as an integration failure.