API Reference
Storage

Live storage-tier pricing matrix

GET
/v1/storage/pricing

Returns the currently effective storage pricing matrix — one row per (tier_gb, currency). Prices are read live, so the values here always match what a workspace is actually billed rather than a hard-coded fallback. egress_gb is reserved (0 today; metered egress is not surfaced yet).

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/pricing"
{  "data": [    {      "tier": "free",      "monthly_minor": 0,      "currency": "KES",      "storage_gb": 0,      "egress_gb": 0,      "updated_at": "2019-08-24T14:15:22Z"    }  ]}
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string"  }}