UluOps Platform API
REST API for multi-agent pipeline tracking, issue correlation, failure taxonomy classification, and quality analytics.
Base URL
https://api.uluops.ai/api/v1Authentication
The API supports two authentication methods:
| Method | Details |
|---|---|
| Session Tokens | Obtained via POST /auth/login, returned as sessionToken |
| API Keys | Created via POST /auth/keys, prefixed with ulr_ |
Both are passed in the Authorization header as Bearer {token}.
Rate Limiting
Dual-window rate limiting: sustained (per minute) and burst (per second).
| Scope | Sustained | Burst |
|---|---|---|
| Global | 1,000 req/min | 75 req/sec |
| Auth endpoints | 30 req/min | 5 req/sec |
| Write operations | 500 req/min | 37 req/sec |
| Analytics | 200 req/min | 10 req/sec |
Error Handling
All errors return a consistent JSON format:
json
{
"error": {
"message": "Validation failed",
"code": "VALIDATION_ERROR",
"errors": [
{ "path": "email", "message": "Invalid email format" }
]
}
}Endpoint Groups
Authentication28 endpoints
User authentication, sessions, and API keys
Projects13 endpoints
Project management
Runs11 endpoints
Validation run management
Issues14 endpoints
Issue tracking and management
Analytics14 endpoints
Analytics and insights
Taxonomy3 endpoints
Failure taxonomy schema
Agents5 endpoints
Agent information
Analysis4 endpoints
Structured analysis data from agent runs
Organizations16 endpoints
WebAuthn7 endpoints