> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enad.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Product search

Domain: `https://graphql.enad.io`

## Overview

Product search is available over GraphQL. Use your application ID in the URL path to reach the correct environment.

## Endpoints

### GraphQL API

**POST** `https://graphql.enad.io/{app_id}/graphql`

Send GraphQL queries and mutations to this endpoint. Replace `{app_id}` with your application (tenant) identifier.

### GraphiQL (interactive API explorer)

**GET** `https://graphql.enad.io/{app_id}/graphiql`

Open this URL in a browser to explore the schema, run queries, and read API documentation in an interactive GraphiQL interface. Replace `{app_id}` with your application identifier.

## Examples

```bash theme={null}
# GraphQL endpoint (replace APP_ID and use your HTTP client / auth as required)
POST https://graphql.enad.io/APP_ID/graphql
```

```text theme={null}
# GraphiQL in the browser
https://graphql.enad.io/APP_ID/graphiql
```
