API v1 · Stable

Lustre Platform API

A REST API for building on top of the Lustre marketplace. JSON over HTTPS, token-based auth, idempotent writes.

OAuth 2.0 & API keys
99.99% uptime SLA
SOC 2 Type II
curl https://api.lustre.app/v1/requests -H "Authorization: Bearer lst_live_…"

Authentication

POST
/v1/auth/session

Exchange credentials for an access token.

{
  "token": "lst_live_8f3a…",
  "expires_in": 3600,
  "user": { "id": "u_123", "role": "customer" }
}
POST
/v1/auth/revoke

Revoke the current session token.

{ "revoked": true }