729 endpoints across 45 providers, one API key, one credit balance. Every page and file below is generated from the live spec — it can never fall behind the API.
Stable URLs a coding agent can fetch directly. No login, no crawling.
llms.txt — endpoint index
Every provider and endpoint with its credit cost and a link to the full spec. Start here.
https://coldiq.com/marketplace/docs/llms.txtllms-full.txt — every endpoint in full
The complete Markdown spec for all endpoints in one document (~2 MB).
https://coldiq.com/marketplace/docs/llms-full.txtopenapi.json — current OpenAPI 3 spec
The same spec the playground reads. Import it into an SDK generator or an MCP client.
https://coldiq.com/marketplace/docs/openapi.jsonReady-to-paste agent prompt
You can call the ColdIQ API. 1. Endpoint index (start here): https://coldiq.com/marketplace/docs/llms.txt 2. One endpoint in full, ready to implement: https://coldiq.com/marketplace/docs/endpoint?method=<get|post>&path=<path>&format=markdown 3. Complete OpenAPI 3 spec: https://coldiq.com/marketplace/docs/openapi.json Base URL: https://api.coldiq.com Auth: send `Authorization: Bearer $COLDIQ_API_KEY` on every request. Always send an identifying `User-Agent` header — default client agents can be blocked at the edge and get a bare 403. Rate limits: 120 requests/minute, 3000 requests/hour per key. Every call costs credits; 402 means the balance is empty.
Working on one endpoint? Open it in the API explorer and use Copy for agent to take its complete spec, resolved OpenAPI fragment, or cURL command straight to the clipboard.
Your first call
curl -X POST "https://api.coldiq.com/v1/email/find" \
-H "Authorization: Bearer $COLDIQ_API_KEY" \
-H "Content-Type: application/json" \
-H "User-Agent: my-company-enrichment/1.0" \
-d '{"input":{"first_name":"Michel","last_name":"Lieben","domain":"coldiq.com"}}'Create a key in Settings → API keys. Keys are workspace-scoped and bill the workspace owner's credit balance.
Open any provider to browse its endpoints, run them, and copy their specs.