Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

API Overview

Optra Prism exposes two backend services with REST APIs.

ServicePortPurpose
Ingest9005Receives OTLP telemetry (logs, metrics, traces)
Prism Engine9007Queries telemetry, scoring, intelligence, insights
EnvironmentIngestEngine
Localhttp://localhost:9005http://localhost:9007
Devhttps://ingest.prism.dev.optra-ai.comInternal (private)
Staginghttps://ingest.prism.staging.optra-ai.comInternal (private)
Productionhttps://ingest.prism.optra-ai.comInternal (private)

The engine is not publicly exposed in deployed environments — the dashboard accesses it via internal networking.

See Authentication for details on API key usage.

All endpoints return JSON:

{
"data": { ... }
}

Errors return:

{
"code": 401,
"message": "Invalid API key"
}
CodeMeaning
200Success
400Bad request (validation error)
401Unauthorized (missing or invalid API key)
413Payload too large
500Internal server error
503Service unavailable (includes Retry-After: 5 header)