AES Encryption Explained: How It Works and Why It Matters
Jun 23, 2026
Write, validate, and run GraphQL queries against any endpoint — with live JSON responses
| Name | Value |
|---|
Enter a GraphQL endpoint and query, then click Send Query
A GraphQL query tester lets you write GraphQL documents and send them to a real GraphQL endpoint to see the live response. GraphQL is a query language and runtime developed by Meta that lets clients request exactly the fields they need from an API — no over-fetching or under-fetching. Instead of multiple REST endpoints, a GraphQL API exposes a single endpoint that accepts query, mutation, and subscription operations.
This tool validates your GraphQL syntax in the browser before anything is sent, then forwards the request through our server to bypass CORS restrictions — so you can test public and development GraphQL APIs with variables, headers, and authentication, then inspect the formatted JSON response, headers, status code, and timing.
https://countries.trevorblades.com/) into the Endpoint field.$variables, provide them as a JSON object and set the operation name so the server knows which operation to run.Authorization: Bearer <token> on protected endpoints.A query reads data and is safe to repeat, while a mutation writes data (create, update, delete) and can have side effects. GraphQL servers expose both operations on the same endpoint. This tool sends either — write the correct operation keyword at the top of your document.
The server may require authentication (add an Authorization header), the endpoint may not allow cross-origin requests or be reachable, the query may reference fields that do not exist in the schema, or the request may time out after 30 seconds. GraphQL APIs return structured errors in the response body — check the response panel for details.
No. Your query is sent through our proxy only to reach the target GraphQL server and is never logged, stored, or retained. Your queries and any headers you add are visible only in your own browser tab.
No. The proxy cannot reach localhost, 127.0.0.1, or private network addresses for security reasons. Use this tool for public or internet-reachable development APIs only.
Build and send any HTTP request
Format and beautify GraphQL queries
Format and validate JSON responses
Generate validation schemas from JSON
Test JSONPath expressions against JSON
Inspect CORS headers of any URL
Blog
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026