Public REST overview
Authenticated query and management API on api.sensobit.com, with an interactive playground.
The public REST API lives at https://api.sensobit.com. Use it to query telemetry, manage alerts and dashboards, and drive AI or security workflows. Write paths for metrics, logs, and OTLP stay on ingest.sensobit.com.
Playground
Open https://api.sensobit.com/playground to browse routes, attach a bearer token or API key, and send live requests against your namespace. The playground is the source of truth for request and response schemas.
Base URL and auth
https://api.sensobit.comAuthorization: Bearer YOUR_TOKEN
X-API-Key: YOUR_API_KEY
X-Sensobit-Namespace: productionSession JWTs from the console and API keys from API Keys both work. Always send a namespace (header, query, or body). Responses never include another tenant's series.
Health
curl -fsS https://api.sensobit.com/healthRepresentative routes
Query and metrics
| Method | Path | Purpose |
|---|---|---|
POST | /api/v1/query | Instant metric query |
GET | /api/v1/query_range | Range query |
GET | /api/v1/metrics | Metric names |
GET | /api/v1/labels/:label/values | Label values (host, and others) |
POST | /api/v1/query (Prometheus prefix /prometheus/api/v1/query) | Prometheus-compatible |
Logs
| Method | Path |
|---|---|
POST | /api/v1/logs/query |
GET | /api/v1/logs/levels |
GET | /api/v1/logs/services |
GET | /api/v1/logs/hosts |
GET | /api/v1/logs/patterns |
GET | /api/v1/logs/correlate/traces/:trace_id |
POST | /api/v1/logs/correlate/metrics |
APM and RUM
| Method | Path |
|---|---|
POST / GET | /api/v1/apm/metrics |
POST / GET | /api/v1/apm/errors |
POST / GET | /api/v1/apm/rum |
AI
| Method | Path |
|---|---|
POST | /api/v1/anomaly |
POST | /api/v1/predictive |
POST | /api/v1/nlp |
POST | /api/v1/root-cause |
POST | /api/v1/remediation |
POST | /api/v1/alert-priority |
POST | /api/v1/feedback |
Security and web security
Routes under /api/v1/scans, /api/v1/vulnerabilities, /api/v1/compliance, and /api/v1/web-security.
Auth and workspace
| Method | Path |
|---|---|
POST | /api/v1/auth/login |
GET | /api/v1/auth/me |
GET / POST / DELETE | /api/v1/auth/api-keys |
Alerts, notifications, teams, dashboards, billing, and traces are documented interactively in the playground.
Example
curl -X POST https://api.sensobit.com/api/v1/query \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"namespace": "production",
"metric": "system.cpu.usage_percent",
"start": 1726796400,
"end": 1726800000
}'Ingest vs query
| Host | Use |
|---|---|
https://ingest.sensobit.com | Agent, metrics, logs, OTLP traces |
https://api.sensobit.com | Query, APM/RUM write+read, AI, security, workspace |
https://api.sensobit.com/playground | Try any of the query/management routes |
See Ingest overview for write payloads.