https://api.caelario.comJSON over HTTPSQuickstart
Create a key and run your first durable extraction.
Read guide →02Authentication
Use workspace-scoped API keys safely.
Read guide →03Jobs
Submit, poll, cancel and export one target.
Read guide →04Batches
Run one operation across as many as 100 targets.
Read guide →05Scheduling
Run once or recur daily, weekly or monthly.
Read guide →06Platforms
Targets, operations and result limits by network.
Read guide →From API key to durable job in one call.
Create a workspace key in the customer dashboard. Caelario validates the request, reserves its maximum credit cost and returns a job ID immediately.
Open the five-minute quickstart →curl -X POST "https://api.caelario.com/v1/jobs" \
-H "X-API-Key: $CAELARIO_API_KEY" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{
"platform": "instagram",
"operation": "profile",
"target": "nike",
"include_posts": 5
}'Asynchronous by design
Submit work once, keep its ID, and poll from any process. No long-lived browser or HTTP connection.
Safe to retry
Idempotency keys protect uncertain submissions from duplicate reservations and duplicate work.
Pay for delivered results
Maximum cost is reserved up front. Failed work releases it; completed work settles only delivered results.
Every public endpoint. No control-plane noise.
The human reference covers the public contract, while the filtered OpenAPI document remains available for tooling and code generation.