API Playground
Test your endpoints right in the browser — no Postman or curl needed.
API Playground
Test your endpoints right in the browser — no Postman or curl needed.
The API Playground ready to send a request Select an endpoint, set parameters, and send a request to see the response.
How to use the Playground
Select an endpoint
Open the Playground screen and pick an endpoint from the dropdown. The method, path, and any path parameters are filled in automatically.
Set your request
Add path parameters, query parameters, authentication, body fields, or file uploads depending on what your endpoint expects.
Send and inspect
Click Send. The response appears below with status, timing, output, and logs so you can see exactly what your endpoint returned.
Pro tip
The Playground auto-fills your endpoint's path and method. Just add your data and send.
Testing authenticated endpoints
For endpoints protected with JWT authentication, use the Playground authentication field:
1. First, call your login endpoint to get a token 2. Copy the token from the response 3. Paste the token into the authentication field 4. Now you can test any protected endpoint
Good to know
Draft or modified endpoints may need to be published before the Playground can call the live route.
What To Check
- Required path parameters are filled in - Query parameters are converted to the types your function expects - Auth tokens are present for protected endpoints - File uploads match the endpoint input shape - Logs explain failures before you publish or connect a frontend
Build a REST API /guides/build-rest-api Create endpoints to test Add User Authentication /guides/user-auth Set up JWT tokens for protected endpoints Publish /features/publish-export Publish your tested endpoints