TraceItCoin
API Documentation
Fund-grade OHLCV data access with plan-based exchange permissions and deterministic limits.
Security
Authentication
Use X-API-KEY header for all requests.
Access
Plans & Limits
Exchange access and request limits per plan.
Integration
Examples
cURL, JS and Python quick starts.
Onboarding
Getting Started
Welcome to the TraceItCoin API. The platform provides real-time and historical OHLCV data for crypto markets.
Base URL: https://api.traceitcoin.com
Quick start
- Register at dashboard.traceitcoin.com
- Generate an API key from your dashboard
- Send the key in the X-API-KEY header
- Start making requests
Security
Authentication
All API requests require an API key. Include it in the request header:
X-API-KEY: your_api_key_here
Never commit API keys to version control. Treat them like passwords.
API keys follow the format: trc_live_[64_hex_characters]
Access
Plans & Limits
Plans control rate limits, maximum candles per request and allowed exchanges.
Plan
Free
- 60 requests / minute
- Max 1,000 candles / request
- Exchange: global
Plan
Pro
- 120 requests / minute
- Max 10,000 candles / request
- Exchanges: global, bybit, mexc
Plan
Enterprise
- 300 requests / minute
- Max 50,000 candles / request
- Exchanges: all
Matrix
Exchange access
| Exchange | Free | Pro | Enterprise |
|---|---|---|---|
| global (aggregated) | Allowed | Allowed | Allowed |
| bybit | No | Allowed | Allowed |
| mexc | No | Allowed | Allowed |
Reference
Endpoints
GET
OHLCV
/api/v1/ohlcv
GET
Fetch OHLCV (candlestick) data for a symbol and timeframe.
Input
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Required | Trading pair symbol (e.g. BTC_USDT) |
| tf | string | Required | Timeframe: 1m, 5m, 15m, 1h, 1d |
| exchange | string | Optional | global (default), bybit, mexc |
| limit | integer | Optional | Most recent candles (plan-dependent) |
Provide either limit or from/to.
Integration
Examples
Example
cURL
curl -X GET "https://api.traceitcoin.com/api/v1/ohlcv?symbol=BTC_USDT&tf=1m&limit=100&exchange=global" \\
-H "X-API-KEY: your_api_key_here"
-H "X-API-KEY: your_api_key_here"
Example
JavaScript
const apiKey = 'your_api_key_here';
const url = 'https://api.traceitcoin.com/api/v1/ohlcv?symbol=BTC_USDT&tf=1m&limit=100';
const url = 'https://api.traceitcoin.com/api/v1/ohlcv?symbol=BTC_USDT&tf=1m&limit=100';
Reliability
Error Codes
HTTP
Error codes
| HTTP | Code | Description |
|---|---|---|
| 401 | missing_api_key | API key not provided in request header |
| 401 | invalid_api_key | API key is invalid or revoked |
| 429 | rate_limit_exceeded | Too many requests |
Interactive
Try It
Test the OHLCV endpoint directly from your browser.
OHLCV
Request
Sent as X-API-KEY.
This tool runs client-side in your browser.
Support
Support
For help and onboarding, contact support or open your dashboard.
Support
Portal