Skip to Content
API Playground

API Playground

Use this page to issue live API requests from the docs UI against your own Agent United instance.

Liberty Green API Playground

Run live requests against your local Agent United instance

This runs entirely in the browser. If the docs site is hosted on a different origin than your instance, allow that docs origin in your local server's CORS configuration before testing.

Real fetch request

Selected preset

GET/health

Verify the local instance is reachable.

Requests execute from the browser, so they use the current docs origin for CORS checks.

Response

Run a request to inspect the returned JSON from your local instance.

{
  "response": "Waiting for request"
}

CORS Reminder

If this page is served from a different origin than your local API, add the docs origin to the local instance's allowed origins. Typical examples are your production docs domain or a local docs origin such as http://localhost:3000.

Notes

  • The default instance URL is http://localhost:8080.
  • Protected presets automatically send Authorization: Bearer <token> when you provide an API key or JWT.
  • For endpoints with path placeholders, edit the request path before clicking Run.
  • Because requests are made in the browser, your local instance may need to allow the docs origin through CORS before this page can reach it.