Saleor website screenshot

Saleor

Saleor is an open-source, GraphQL-first commerce platform built in Python (Django) with a TypeScript dashboard. The entire commerce surface is exposed through a single GraphQL API used by storefronts, the Saleor Dashboard, and third-party Saleor Apps; mutations and queries cover products, channels, carts (checkout), orders, payments, promotions, taxes, attributes, and warehouses. Developer surface includes Saleor Cloud, the Saleor App SDK and App Template, a starter storefront, language SDKs (saleor-sdk for TS/JS), and an App Store of first-party and partner integrations.

8 APIs 0 Features
CommerceHeadlesseCommerceGraphQLOpen SourcePythonTypeScript

APIs

Saleor GraphQL API

Single GraphQL endpoint exposing the entire Saleor commerce model - products, variants, categories, collections, channels, checkout, orders, payments, promotions, taxes, attribu...

Saleor App SDK

TypeScript SDK for building Saleor Apps - background services that extend Saleor over the GraphQL API and react to webhooks. Handles app installation, auth, async webhooks, and ...

Saleor App Template

Reference Next.js project for bootstrapping a Saleor App - install flow, webhook handlers, GraphQL clients, and a config UI mounted inside the Saleor Dashboard via the App Bridge.

saleor-sdk (TypeScript / JavaScript)

Official TypeScript / JavaScript SDK wrapping the Saleor GraphQL API for storefronts and Apps - typed operations, auth, cart, and checkout helpers.

Saleor Storefront (Next.js Starter)

Reference Next.js storefront talking to the Saleor GraphQL API - product browse, cart, checkout, account, and payments. Used as the canonical starting point for headless storefr...

Saleor Dashboard

Official React / TypeScript admin dashboard for Saleor - a thick client built entirely against the Saleor GraphQL API.

Saleor Cloud

Hosted, managed Saleor service - provisions Saleor cores per store with the same GraphQL API surface, plus environment management, deploys, and Apps marketplace.

Saleor Core (Server) Repository

Source repository for the Saleor server - the Django / Python backend that implements the GraphQL API, business logic, persistence, and webhooks.

Collections

GraphQL

Saleor GraphQL API

Single GraphQL endpoint exposing the entire Saleor commerce model - products, variants, categories, collections, channels, checkout, orders, payments, promotions, taxes, attribu...

GRAPHQL

Pricing Plans

Saleor Plans Pricing

1 plans

PLANS

Rate Limits

Saleor Rate Limits

2 limits

RATE LIMITS

FinOps

Saleor Finops

FINOPS

Resources

🔗
Website
Website
🔗
Documentation
Documentation
🔗
APIReference
APIReference
👥
GitHub
GitHub
🔗
Cloud
Cloud
🔗
Discord
Discord
🟢
Status
Status
🔗
LinkedIn
LinkedIn
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Saleor GraphQL API
  version: '2026-05-23'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Execute GraphQL query (query string transport)
    type: http
  http:
    method: GET
    url: https://{store}.saleor.cloud/graphql/
    params:
    - name: query
      value: ''
      type: query
    - name: operationName
      value: ''
      type: query
    - name: variables
      value: ''
      type: query
  docs: GraphQL query passed via query parameters per GraphQL-over-HTTP.
- info:
    name: Execute GraphQL query or mutation
    type: http
  http:
    method: POST
    url: https://{store}.saleor.cloud/graphql/
    body:
      type: json
      data: '{}'
  docs: 'Single GraphQL endpoint accepting a query or mutation as documented

    in the Saleor API reference. The request body follows the standard

    GraphQL-over-HTTP envelope.

    '
bundled: true