API and Integration
Inspire provides APIs for data ingestion, content management, and system integration. Use these APIs to push data from external systems, automate content workflows, and integrate with your existing infrastructure.
Available APIs
| API | Purpose | Authentication |
|---|---|---|
| Data Ingestion | Push data into the DataPool | Ingest key (ik_) |
| Webhook Ingestion | Receive data via HTTP POST | Ingest key (ik_) |
| v1 Legacy API | Backward-compatible API for legacy integrations | API key |
Base URL
All API endpoints are available at:
https://inspire.yourcompany.com/api/Response Format
All APIs return JSON responses with consistent structure:
{
"success": true,
"data": { ... },
"message": "Operation completed"
}Error responses:
{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Field 'name' is required"
}
}Last updated on