Complete reference for the Pazieh Financial Intelligence API
To access the API with higher rate limits, include your API key in the X-API-Key header:
Without an API key, requests are limited by IP address (3 requests per day). Upgrade to a paid plan for higher limits and dedicated API keys.
| Parameter | Type | Description | Example |
|---|---|---|---|
| symbol | string | Trading symbol (required) | BTCUSDT, AAPL |
| interval | string | Time interval | 1h, 4h, 1d |
| source | string | Data source (auto/binance/yahoo) | auto |
curl -H "X-API-Key: pz_live_your_key" \
"https://pazieh.com/api/ta/BTCUSDT?interval=4h"
{
"symbol": "BTCUSDT",
"interval": "4h",
"price": 87342.51,
"rsi": 58.3,
"macd": {
"value": 124.5,
"signal": 89.2,
"histogram": 35.3
},
"bollinger": {
"upper": 89100,
"middle": 86500,
"lower": 83900
},
"support_resistance": {
"support": [85200, 82800],
"resistance": [89500, 92000]
}
}
| Parameter | Type | Description | Example |
|---|---|---|---|
| symbol | string | Trading symbol (required) | BTCUSDT, AAPL |
| multi_tf | boolean | Include multiple timeframes | true |
curl -H "X-API-Key: pz_live_your_key" \
"https://pazieh.com/api/analysis/BTCUSDT?multi_tf=true"
| Parameter | Type | Description | Example |
|---|---|---|---|
| symbols | string | Comma-separated symbols (required) | BTCUSDT,ETHUSDT,ADAUSDT |
| interval | string | Time interval | 1h, 4h, 1d |
curl -H "X-API-Key: pz_live_your_key" \
"https://pazieh.com/api/ta/batch/BTCUSDT,ETHUSDT?interval=1d"
| Parameter | Type | Description | Example |
|---|---|---|---|
| symbol | string | Trading symbol (required) | BTCUSDT, AAPL |
curl -H "X-API-Key: pz_live_your_key" \
"https://pazieh.com/api/price/BTCUSDT"
| Parameter | Type | Description | Example |
|---|---|---|---|
| symbol | string | Trading symbol (required) | BTCUSDT, AAPL |
| interval | string | Time interval | 1h, 4h, 1d |
| limit | number | Number of candles to return | 100 |
curl -H "X-API-Key: pz_live_your_key" \
"https://pazieh.com/api/chart-data/BTCUSDT?interval=1d&limit=30"
No parameters required. Returns API status and current rate limit information.
curl "https://pazieh.com/api/health"