The Products endpoints let you retrieve your store’s public profile and its active product catalog. These are typically called server-side when rendering storefront pages. All three endpoints require a validDocumentation Index
Fetch the complete documentation index at: https://docs.quickshops.app/llms.txt
Use this file to discover all available pages before exploring further.
x-api-key header, but a public key is sufficient — you do not need a secret key.
Get store
Retrieves the public profile of the store associated with your API key.Request
Response
Unique identifier for the store.
URL-safe identifier for the store, used in storefronts and public URLs.
Display name of the store.
Optional description of the store.
URL of the store’s logo image, if one has been uploaded.
Whether the store is live and publicly accessible.
Whether Stripe payments have been connected. Checkout will fail if this is
false.List products
Returns all active products for the store.Request
Response
Returns an object with adata array of product objects.
Unique identifier for the product.
Identifier of the store this product belongs to.
Display name of the product.
Description of the product. May be
null.Price in the smallest unit of the currency (e.g. cents for USD). Divide by 100 to get the display amount.
ISO 4217 currency code in lowercase (e.g.
"usd", "eur").Product type. One of
"digital" or "subscription".For subscription products, the billing frequency:
"month" or "year". null for digital products.URL of the product image. May be
null.Whether the product is active and available for purchase.
Optional category label for grouping products in your storefront. May be
null.Array of short feature or detail strings to display on the product listing. May be
null.Get product
Retrieves a single product by its ID.Path parameters
The unique identifier of the product to retrieve.
Request
Response
Returns adata object containing the product.