Skip to main content
Developer Resources

API Documentation

Complete reference for the CollectIQ REST API. Get started with authentication, manage inventory, create buyer requests, run the match engine, and orchestrate trades.

BASE URLhttps://collectiqhq.com/api/v1
OpenAPI Spec

Authentication

All protected API endpoints require authentication via API key or session cookie. Include your API key in the request header:

bash
1curl -X GET https://collectiqhq.com/api/v1/inventory \
2 -H "X-API-Key: ciq_live_xxxxxxxxxxxxx"

API keys can be created in the API Keys section of the developer portal.

Key Types

  • **Live keys** (prefix: <code class="text-gold-400">ciq_live_</code>) — For production use
  • **Test keys** (prefix: <code class="text-gold-400">ciq_test_</code>) — For development and testing
  • SDK Authentication

    typescript
    1import { CollectIQ } from '@collectiq/sdk';
    2
    3const client = new CollectIQ({
    4 apiKey: process.env.COLLECTIQ_API_KEY!,
    5});

    Ready to integrate?

    Create a free account to get your API key and start building.