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/v1

Authentication

The API supports two authentication methods:

MethodDetails
Session TokensObtained via POST /auth/login, returned as sessionToken
API KeysCreated 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).

ScopeSustainedBurst
Global1,000 req/min75 req/sec
Auth endpoints30 req/min5 req/sec
Write operations500 req/min37 req/sec
Analytics200 req/min10 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