Skip to content
Cartly Developers

GraphQL API

Query exactly the data you need with the Cartly GraphQL Storefront API.

Example Queries

graphql
query {
  products(first: 10) {
    id
    title
    handle
    variants {
      id
      price
      sku
    }
    images {
      url
      alt
    }
  }
}

Rate Limits

The GraphQL API is limited to 30 mutations per minute and 120 queries per minute per shop. Exceeding these limits returns a 429 Too Many Requests response.