Guide: explore the interactive demo API
OpenAPI docs click when you fire real routes and see request/response schemas. This section exposes a demo API to practice methods, status codes, and simulated auth.
Test calls go from your browser to the demo backend — do not use real credentials. It teaches REST contracts, cursor pagination, and standard errors before you wire your own service.
Use for developer onboarding, workshops, or to see how WebDevTools HTTP client sets headers. Copy path and query examples into automated tests.
Step by step
- Browse resources — Expand tags (users, posts, etc.) and read required params, types, and sample bodies.
- Execute an operation — Fill path params and sample JSON body. Watch returned status and response schema.
- Compare to OpenAPI — Confirm enums, `date-time` formats, and arrays match what your SDK would emit.
- Apply in your stack — Mentally export curl or use the cURL converter to generate fetch/axios in your codebase.