GraphQL Playground - Test Queries and Mutations Online
Send GraphQL queries and mutations, pass variables, and inspect JSON responses. Use headers to authenticate with bearer tokens or API keys when needed.
Why use a GraphQL Playground?
- Quick API testing: validate queries before coding.
- Variables support: keep queries clean and reusable.
- Auth headers: test protected endpoints safely.
- Readable output: inspect JSON responses easily.
How to use
- Enter your GraphQL endpoint URL.
- Write a query (or mutation) in the Query box.
- Optional: add Variables JSON (e.g.
{"id":"123"}). - Optional: add Headers JSON (e.g.
{"Authorization":"Bearer …"}). - Click Run to get the response.