Skip to main content
GET
/
orgs
/
{org_id}
/
billing
/
summary
Read-only billing summary for the org
curl --request GET \
  --url https://api.mnemom.ai/v1/orgs/{org_id}/billing/summary \
  --header 'Authorization: Bearer <token>'
{
  "account": {},
  "plan": {},
  "usage_rollup": [
    {
      "date": "2023-12-25",
      "check_count": 123,
      "tokens_in": 123,
      "tokens_out": 123,
      "cost_estimate": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

org_id
string
required

Organization identifier (e.g. org-abc12345)

Response

Summary payload.

account
object
plan
object
usage_rollup
object[]