Skip to content

Installation

The GraphQL API is in closed beta and runs on paid plans. Contact us to enable it for your store.

In Settings → Developers, open the API Access (REST & GraphQL) section. REST and GraphQL share the same API Key and API Secret. See Authentication.

Terminal window
curl -X POST https://stamp.appydesign.io/graphql \
-H "X-Api-Key: YOUR_API_KEY" \
-H "X-Api-Secret: YOUR_API_SECRET" \
-H "Content-Type: application/json" \
-d '{"query":"{ shop { programName currencySymbol } }"}'

The schema is introspectable, so GraphQL clients and code generators (GraphiQL, Apollo, Insomnia) discover types automatically once you point them at the endpoint with your headers.

Next, see the Schema reference.