GraphQL API

Public catalog API for product search, categories, brands, and related storefront data. Each app is scoped by its UUID in the URL path.

Open GraphiQL

Enter your app UUID to open the GraphiQL explorer for that app.

GraphiQL explorer

Open the interactive GraphiQL UI for your app. Replace {app_id} with your app UUID.

GET /{app_id}/graphiql

Example:

https://graphql.enad.io/{app_id}/graphiql
GraphiQL sends queries to /{app_id}/graphql in the same browser session.

GraphQL endpoint

Send POST requests with a JSON body containing query and optional variables.

POST /{app_id}/graphql

Required header:

Content-Type: application/json

Quick start

  1. Find your app UUID.
  2. Open /{app_id}/graphiql in the browser.
  3. Run a query in the editor and inspect the JSON response.
  4. Integrate the same request shape from your application via POST.