STEALTHIUM DEVELOPER RESOURCES

Stealthium is a runtime observability and security platform for GPUs and AI workloads. This page indexes every machine-readable resource stealthium.io publishes, so an agent or a developer can find the API, the specification and the documentation without guessing URLs.

When to use Stealthium

Stealthium is not the right tool for: General-purpose CPU/host APM or log aggregation; Provisioning, scheduling or renting GPU capacity; Static analysis of model weights or prompt-level LLM safety.

Machine-readable resources

Stealthium website API

Read-only content endpoints need no credentials and allow cross-origin requests. The full contract — typed parameters, response schemas, error codes and scopes — is published as an OpenAPI 3.1 document at /openapi.json.

Authentication and scopes

Content endpoints are public. POST /api/contact accepts either a request from an allowed browser origin or an API key presented in the x-api-key header. Keys are scoped, so an agent can be issued only the access it needs — contact:write is the scope this endpoint requires. An unknown key returns 401; a valid key without the scope returns 403. Request a key at info@stealthium.io.

curl -X POST https://stealthium.io/api/contact \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: <your key>' \
  -d '{"firstName":"Ada","email":"ada@example.com","company":"Example","message":"Requesting a demo."}'

Markdown content negotiation

Ask for text/markdown, or append .md to any page URL, and this site answers with markdown instead of HTML. Every negotiated response carries Vary: Accept, Accept-Encoding, so a cache can never hand you the wrong representation.

curl -H 'Accept: text/markdown' https://stealthium.io/
curl https://stealthium.io/blog/gpu-security-gap-nobody-owns.md

A path that does not exist returns a real HTTP 404 whose body is a short markdown site map, so a wrong guess costs one request rather than a retry loop.

Stealthium platform API

GPU telemetry ingest and fleet queries belong to the Stealthium platform, a separate authenticated service. Install the client, create an API key and stream GPU telemetry by following the quickstart in the Stealthium documentation.