localhost with your server address:
What it is for
Use the local API explorer when you want to:- Quickly inspect available endpoints on the running binary.
- Check a request body shape while building an integration.
- Try a request from the same environment where WaGo is deployed.
- Compare your server response with your application code.
What it is not for
The API explorer is not the full product guide. It does not explain production workflows, webhook processing, media handling, call behavior, or operational troubleshooting in enough detail. Use Mintlify docs for:- How to connect and scan a session.
- How to design your token flow.
- How to receive and parse webhooks.
- How to send media safely.
- How to troubleshoot sessions, media, webhooks, and calls.
How to use it
- Start WaGo.
- Open
http://localhost:1337/api. - Pick an endpoint.
- Add the required header:
- Send the request and compare the response with the matching Mintlify docs page.
Common problems
The page does not load
Check that WaGo is running:Requests fail with Unauthorized
The request is missing the token header, or the token does not exist in WaGo.
Admin endpoints fail
Admin endpoints needadmintoken, not token. Keep the admin token out of browser applications.

