Architecture
Where your request goes, what decides the answer it gets, and where the figures in it come from. Seven diagrams, each linking to the page that owns the detail.
The path of a request
Every call meets the same checks in the same order: the cache first, then your key, then your plan's limits - and only then is the catalog read. A 304 or a 429 is an answer you get before any of your allowance is spent on looking anything up.
What decides your status code
401 is about the credential and 403 is about permission, which is why presenting a different key fixes one and never the other. Each leaf here is a real response, and every one of them names a reason your client can branch on.
Keeping a copy current
You do not have to re-download the catalog to know your copy is current. Store the ETag you were given, send it back, and an unchanged record answers 304 with no body - a reply that costs you a rate-limit slot and nothing off your daily allowance.
Where a record comes from
A record is written and reviewed before it is published, and our checks decide whether it ships at all. Publishing moves its version and its last-changed date, which are the two values you can hold a cached copy against.
How a change reaches you
Nothing polls on your behalf. A change to a record is recorded and sent on within fifteen minutes, matched against the events you subscribed to - so it reaches you even if your endpoint was down when it happened, because a failed delivery is retried and then kept for you to replay.
An assistant calling the API
The hosted MCP server holds no data and no credentials of its own: it forwards your key and marks the call as coming from MCP. That mark can only lower your limits, which is what makes the smaller MCP allowance inside your plan possible.
Why the samples work
The snippet on a reference page is not an illustration. CI installs the published SDK, runs that exact snippet against production, and publishes what happened - passes and failures alike - which is what the badge under each sample is reporting.