> ## 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 Collections

> One store’s collections — the merchant’s own groupings of products.

Requires the `get-store-collections` scope.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/stores/{id}/collections
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}/collections:
    get:
      tags:
        - Shopify
      summary: List Store Collections
      description: |-
        One store’s collections — the merchant’s own groupings of products.

        Requires the `get-store-collections` scope.
      operationId: StoresController_listCollections
      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/ListStoreCollectionsResponseDto'
              example:
                data:
                  - id: shopify_collection_01k3b0c1d2e3f4g5h6j7k8m9np
                    title: Single Origin
                    handle: single-origin
                    description: Coffees from one farm or co-op.
                    image: null
                    product_count: 12
                    published_at: '2025-02-01T00:00:00.000Z'
                    updated_at: '2026-07-19T09:41:00.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-collections
        '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:
    ListStoreCollectionsResponseDto:
      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'
              description:
                anyOf:
                  - type: string
                  - type: 'null'
              image:
                anyOf:
                  - type: object
                    properties:
                      src:
                        type: string
                      alt:
                        anyOf:
                          - type: string
                          - type: 'null'
                    required:
                      - src
                      - alt
                  - type: 'null'
              product_count:
                anyOf:
                  - type: number
                  - type: 'null'
              published_at:
                anyOf:
                  - type: string
                  - type: 'null'
              updated_at:
                anyOf:
                  - type: string
                  - type: 'null'
              source:
                type: string
            required:
              - id
              - title
              - handle
              - description
              - image
              - product_count
              - published_at
              - updated_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_`.

````