Integrate ClosingIQ document intelligence directly into your applications with our REST API. Full CRUD operations, webhook events, and embeddable widgets.
# Authenticate with your API key
curl -H "Authorization: Bearer ciq_live_your_key_here" \
https://api.closingiq.com/api/v1/projects
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/v1/auth/signup | Create a new account |
| POST | /api/v1/auth/login | Authenticate and get tokens |
| POST | /api/v1/documents/upload-url | Get a signed URL for direct upload |
| POST | /api/v1/documents/complete-upload | Register uploaded document and start AI processing |
| GET | /api/v1/documents/{id}/extractions | Get structured extracted fields with citations |
| GET | /api/v1/documents/{id}/risks | Get detected risk flags with severity and evidence |
| GET | /api/v1/documents/{id}/summary | Get AI-generated document summary |
| POST | /api/v1/chat/threads/{id}/messages | Ask questions and get cited AI answers |
| POST | /api/v1/projects/{id}/export | Generate structured JSON or PDF report |
| POST | /api/v1/videos/generate | Generate AI marketing video (Pro+ plans) |
Official TypeScript SDK coming soon. REST API available now for any language.
// Coming soon
npm install @closingiq/sdk