API Overview
Complete reference for all PerceptOS API endpoints.
Base URL
bash
https://api.perceptos.com/v1Authentication
Include your API key in the Authorization header:
bash
Authorization: Bearer YOUR_API_KEYPOST
/api/v1/processProcess and analyze your data with our AI engine.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| input | string | object | Yes | Data to process |
| model | string | No | Model variant (default, advanced, custom) |
Response Example
json
{
"id": "proc_abc123",
"status": "completed",
"result": {},
"processingTime": 234
}GET
/api/v1/statusCheck system status and health.
Response Example
json
{
"status": "operational",
"uptime": 99.99,
"responseTime": 45,
"services": {
"api": "healthy",
"database": "healthy"
}
}POST
/api/v1/analyticsSubmit custom analytics events.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| event | string | Yes | Event name |
| properties | object | No | Event properties |
Response Example
json
{
"success": true,
"eventId": "evt_xyz789"
}