What changed at a glance
v2 exposed a few monolithicfull-metadata endpoints that returned everything about an entity in one response. Data is split into granular endpoints, each returning one focused slice.
This is the core shift to plan around — see Endpoint mapping for the full table.
Plans & limits
Per-plan rate limits and credit allowances, and how the new call pattern affects consumption.
Endpoint mapping
Every v2 endpoint and its v3 replacement(s).
Base conventions
- Prefix. All routes live under
/v3. There is no shared-version mode — a key calls v3 routes directly. - Authentication. Pass your key in the
X-Api-Keyheader. v3 never accepts the key as a query parameter. - Response envelope. Object responses return
{ data, status }; list responses return{ data, meta, status }. Read your payload fromdata.
Migration timeline
Parallel window — v2 and v3 run together
For several months after v3 ships, v2 and v3 are both live. Integrate and
validate v3 against your real traffic during this window.