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

# List Store Products

> One store’s products, each with its category, hero image, and price range.

Requires the `get-store-products` scope.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/stores/{id}/products
openapi: 3.1.0
info:
  title: Orbbit Data API
  version: '1.0'
  description: >-
    Commodity prices, packaged-food labels, and online store catalogs over one
    read-only REST API.
servers:
  - url: https://api.orbbit.co
    description: Production
security:
  - bearer: []
tags:
  - name: Commodities
  - name: Branded Food
  - name: Shopify
paths:
  /v1/stores/{id}/products:
    get:
      tags:
        - Shopify
      summary: List Store Products
      description: >-
        One store’s products, each with its category, hero image, and price
        range.


        Requires the `get-store-products` scope.
      operationId: StoresController_listProducts
      parameters:
        - name: id
          required: true
          in: path
          description: A store id as returned by GET /v1/stores
          schema:
            type: string
        - name: limit
          required: false
          in: query
          description: Rows per page, default 50; anything above 200 is served as 200
          schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 50
        - name: cursor
          required: false
          in: query
          description: >-
            The next_cursor of the previous page; absent starts from the first
            row
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListStoreProductsResponseDto'
              example:
                data:
                  - id: shopify_product_01k3a9x8w7v6u5t4s3r2q1p0nm
                    title: House Blend, Whole Bean
                    handle: house-blend
                    vendor: Example Coffee Co.
                    product_type: Coffee
                    category: coffee_and_tea
                    sub_category: coffee
                    tags:
                      - medium-roast
                      - whole-bean
                    image:
                      src: >-
                        https://cdn.shopify.com/s/files/1/0000/0000/products/house-blend.jpg
                      width: 1200
                      height: 1200
                    price:
                      min: 18
                      max: 54
                      currency: USD
                    variant_count: 3
                    published_at: '2025-03-14T17:02:11.000Z'
                    source: shopify
                next_cursor: null
        '400':
          description: The request was malformed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiErrorDto'
              example:
                error:
                  type: invalid_request
                  message: 'Unknown series: butter-spot'
        '401':
          description: The API key is missing, malformed, unknown, or revoked
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiErrorDto'
              example:
                error:
                  type: unauthorized
                  message: 'Missing or malformed Authorization: Bearer header'
        '403':
          description: The key is valid but not scoped to this endpoint
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiErrorDto'
              example:
                error:
                  type: forbidden
                  message: This key is not scoped to get-store-products
        '404':
          description: No record has this ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiErrorDto'
              example:
                error:
                  type: not_found
                  message: >-
                    Unknown branded food:
                    data_branded_food_01k0000000000000000000000
      security:
        - bearer: []
components:
  schemas:
    ListStoreProductsResponseDto:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              title:
                anyOf:
                  - type: string
                  - type: 'null'
              handle:
                anyOf:
                  - type: string
                  - type: 'null'
              vendor:
                anyOf:
                  - type: string
                  - type: 'null'
              product_type:
                anyOf:
                  - type: string
                  - type: 'null'
              category:
                anyOf:
                  - type: string
                  - type: 'null'
              sub_category:
                anyOf:
                  - type: string
                  - type: 'null'
              tags:
                type: array
                items:
                  type: string
              image:
                anyOf:
                  - type: object
                    properties:
                      src:
                        type: string
                      width:
                        anyOf:
                          - type: number
                          - type: 'null'
                      height:
                        anyOf:
                          - type: number
                          - type: 'null'
                    required:
                      - src
                      - width
                      - height
                  - type: 'null'
              price:
                type: object
                properties:
                  min:
                    anyOf:
                      - type: number
                      - type: 'null'
                  max:
                    anyOf:
                      - type: number
                      - type: 'null'
                  currency:
                    anyOf:
                      - type: string
                      - type: 'null'
                required:
                  - min
                  - max
                  - currency
              variant_count:
                type: number
              published_at:
                anyOf:
                  - type: string
                  - type: 'null'
              source:
                type: string
            required:
              - id
              - title
              - handle
              - vendor
              - product_type
              - category
              - sub_category
              - tags
              - image
              - price
              - variant_count
              - published_at
              - source
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
      required:
        - data
        - next_cursor
    PublicApiErrorDto:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            message:
              type: string
          required:
            - type
            - message
      required:
        - error
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: Your API key, which starts with `orbbit_data_`.

````