Skip to main content

Usage

Summary

GET /api/v1/navi/usage/summary
Example:
curl -s \
  -H "Cookie: sb-access-token=<your-session-cookie>" \
  https://dev.meridian7.io/api/v1/navi/usage/summary | jq
Example response:
{
  "data": {
    "billingPeriod": {
      "start": "2026-03-01T00:00:00.000Z",
      "end": "2026-04-01T00:00:00.000Z"
    },
    "requests": {
      "count": 0,
      "limit": null
    },
    "runs": {
      "count": 0,
      "limit": null
    },
    "tokens": {
      "input": 0,
      "output": 0,
      "limit": null
    }
  },
  "requestId": "req_123",
  "version": "v1"
}
Use this endpoint when you want to:
  • display usage in an admin view
  • warn users before they hit quotas
  • audit run and token activity at a summary level