Getting started
Authenticate, understand limits, read responses.
- 1 Authentication — API keys and headers
- 2 Rate limits — per-plan limits and how 429s behave
- 3 Response format — payload structure, variants, provenance
60-second start
# 1. list what your plan can access
curl -H "X-API-Key: YOUR_API_KEY" "https://api.madjik.io/v1/catalog"
# 2. latest value of one metric
curl -H "X-API-Key: YOUR_API_KEY" "https://api.madjik.io/v1/metrics/M10004"
# 3. its history with provenance
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.madjik.io/v1/metrics/M10004/timeseries?interval=1h"
