Overview
Every REST endpoint, generated from the live OpenAPI document.
Every REST endpoint the Public API serves, grouped by resource in the sidebar. The pages are generated from the same OpenAPI document the API emits at build time, so the reference never drifts from the running service.
Each operation page shows the path and method, the parameters and request body, every response shape, and an interactive playground that calls the API through a same-origin proxy so you can try it with your own key.
Before your first call
- Authentication: send
Authorization: Bearer strd_<key>; the team is resolved from the key. - Pagination: list endpoints return keyset cursors, so follow
page.nextCursoruntilhasMoreis false. - Errors: one envelope,
{ "error": { "code", "message" } }; branch oncode.
Prefer one typed endpoint over many? The GraphQL guide exposes the same resources through a single endpoint.