API Reference
Storage

Read current storage tier + usage breakdown

GET
/v1/storage/tier

Authorization

bearerAuth
AuthorizationBearer <token>

Long-lived ES256 JWT minted from the dashboard (https://app.sautikit.com/developers/api-keys). Signed by the platform keyring. Carries workspace_id and scopes claims; revoked via the platform deny-list.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/storage/tier"
{  "tier_gb": 1,  "log_retention": "string",  "used_bytes": 0,  "breakdown": {    "recordings_bytes": 0,    "logs_bytes": 0,    "other_bytes": 0  },  "price_minor": 0,  "currency": "string",  "updated_at": "2019-08-24T14:15:22Z"}
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string"  }}