REST API Reference

Programmatic access to TRADEIZ aggregated crypto perpetual market data — 108 read-only GET endpoints with API-key auth, plan gating and per-minute rate limits.

Base URL: https://api.tradeiz.com Version: 20260706.1 108 endpoints

Overview

TRADEIZ Public API v1 provides 108 read-only GET endpoints for market, aggregated, sentiment, trade-flow, DEX, and news datasets. It uses API-key authentication, plan-based access control, and per-key rate limiting.

Core contract

  • Base URL: https://api.tradeiz.com
  • Version: 20260706.1
  • Format: application/json
  • Catalog snapshot: 20260706.1
  • Authentication: X-Api-Key / Authorization: Bearer header (same key, two header styles).
  • Method semantics: All documented routes are read-only GET endpoints.

Endpoint coverage by category

Category Endpoints Coverage
reference2Exchange and symbol metadata for discovery and validation.
market9Unified spot/futures market endpoints with path-based instruments.
spot8Spot-prefixed market routes for direct spot-only integrations.
derivatives10Funding, OI, liquidation, depth and liquidation-map derivatives datasets.
aggregated45Cross-market dashboards, rankings, indicators, exports and cycle metrics.
sentiment12Fear & greed, heatmaps, divergence, top-trader positioning metrics.
trades7Large trades, trade detail views, CVD and netflow-style analytics.
dex11DEX overview, venues, whale bundles, address and funding-arb endpoints.
news4Latest/hot/base-filtered news endpoints for event-aware systems.

Standard response envelope

Successful responses keep a stable envelope so clients can share one parser across endpoints.

  • success: Boolean status flag (true for success).
  • data: Endpoint-specific payload object or array.
  • meta.cached: true when served from cache.
  • meta.clamped: true when requested history is clamped by plan or physical retention limits.
  • meta.server_time: UTC epoch seconds from the API gateway.
{
  "success": true,
  "data": { "...": "endpoint-specific payload" },
  "meta": {
    "cached": false,
    "clamped": false,
    "server_time": 1751558400
  }
}

Quick start in 3 steps

  1. Create an API key in the developer portal and store the one-time secret securely.
  2. Send a GET request with X-Api-Key (or Authorization: Bearer ) and Accept: application/json.
  3. Handle the `success/data/meta` envelope and map stable error codes for retries/upgrades.

API subscription billing is independent from website membership tiers: buying API access does not upgrade website entitlements, and vice versa.

Changelog

Public API Version History

TRADEIZ Public API releases use calendar semantic versions in the form YYYYMMDD.N — date stamp plus a same-day increment. Breaking contract changes bump the date or reset N; additive endpoint releases and capability expansions ship as regular increments on the release date.

  • majorInitial v1 launch or breaking URL/auth/envelope changes.
  • minorNew endpoints, new datasets, or materially expanded response fields.
  • patchRetention windows, limits, cache TTL, or documentation-only adjustments without new routes.