SensobitDocs

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.com
Authorization: Bearer YOUR_TOKEN
X-API-Key: YOUR_API_KEY
X-Sensobit-Namespace: production

Session 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/health

Representative routes

Query and metrics

MethodPathPurpose
POST/api/v1/queryInstant metric query
GET/api/v1/query_rangeRange query
GET/api/v1/metricsMetric names
GET/api/v1/labels/:label/valuesLabel values (host, and others)
POST/api/v1/query (Prometheus prefix /prometheus/api/v1/query)Prometheus-compatible

Logs

MethodPath
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

MethodPath
POST / GET/api/v1/apm/metrics
POST / GET/api/v1/apm/errors
POST / GET/api/v1/apm/rum

AI

MethodPath
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

MethodPath
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

HostUse
https://ingest.sensobit.comAgent, metrics, logs, OTLP traces
https://api.sensobit.comQuery, APM/RUM write+read, AI, security, workspace
https://api.sensobit.com/playgroundTry any of the query/management routes

See Ingest overview for write payloads.

On this page