Search documentation

Search across all documentation pages

Get API Key
Endpoints

Usage

Check your usage and remaining allowance

Read your own consumption for the current billing period. Usage is metered in two independent classes — part records and AI tokens (see Rate limits & usage); this endpoint reports the running total in each so you can track an integration against its monthly allowance. Free to call.

any valid key

This endpoint reflects your own account usage, so it needs no special scope — any valid key (parts:read or ai:run) can read it.

Get usage

GEThttps://api.zenode.ai/v1/usageFree

Response

JSON
1{
2 "period": {
3 "start": "2026-06-01T00:00:00Z",
4 "end": "2026-07-01T00:00:00Z"
5 },
6 "usage": {
7 "part_records": {
8 "used": 8830,
9 "limit": null
10 },
11 "ai_tokens": {
12 "used": 1820400,
13 "limit": null
14 }
15 },
16 "request_id": "req_3e90..."
17}
ParameterTypeRequiredDescription
period
{ start, end }RequiredThe current billing period (ISO-8601 UTC); usage counts reset at start
usage
objectRequiredOne entry per metering class — part_records, ai_tokens
request_id
stringRequiredFor support / tracing

Each class entry is { used, limit }:

ParameterTypeRequiredDescription
used
intRequiredUnits consumed in the current period — full part records fetched, or LLM tokens
limit
int | nullRequiredThe period allowance for this class; null until per-tier quotas are enabled with billing

Per-tier allowances and quota enforcement ship with billing — until then limit is null and used is informational. The per-minute throttle is separate and surfaced live on the X-RateLimit-* response headers (see Rate limits & usage).

Next