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

# Search Stores

> Search the crawled Shopify stores — every filter optional, all combined.

Requires the `search-stores` scope.

The crawl covers stores in every industry. Pass `industry=cpg` to keep only consumer packaged goods brands.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/stores
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:
    get:
      tags:
        - Shopify
      summary: Search Stores
      description: >-
        Search the crawled Shopify stores — every filter optional, all combined.


        Requires the `search-stores` scope.


        The crawl covers stores in every industry. Pass `industry=cpg` to keep
        only consumer packaged goods brands.
      operationId: StoresController_search
      parameters:
        - name: domain
          required: false
          in: query
          description: Keep only stores whose domain contains this, ignoring case
          schema:
            type: string
        - name: name
          required: false
          in: query
          description: Keep only stores whose name contains this, ignoring case
          schema:
            type: string
        - name: industry
          required: false
          in: query
          description: >-
            Exact match on the crawl’s verdict: cpg, partial_cpg, not_cpg,
            unknown
          schema:
            type: string
        - name: category
          required: false
          in: query
          description: Exact match on a category the store sells in
          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/SearchStoresResponseDto'
              example:
                data:
                  - id: shopify_store_01k3a1b2c3d4e5f6g7h8j9k0mn
                    domain: example-coffee.com
                    name: Example Coffee Co.
                    country: US
                    industry: cpg
                    category: coffee_and_tea
                    product_count: 84
                    variant_count: 212
                    min_price: 7.5
                    median_price: 18
                    max_price: 129
                    crawled_at: '2026-08-31T00:00: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 search-stores
      security:
        - bearer: []
components:
  schemas:
    SearchStoresResponseDto:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              domain:
                type: string
              name:
                anyOf:
                  - type: string
                  - type: 'null'
              country:
                anyOf:
                  - type: string
                  - type: 'null'
              industry:
                anyOf:
                  - type: string
                  - type: 'null'
              category:
                anyOf:
                  - type: string
                  - type: 'null'
              product_count:
                anyOf:
                  - type: number
                  - type: 'null'
              variant_count:
                anyOf:
                  - type: number
                  - type: 'null'
              min_price:
                anyOf:
                  - type: number
                  - type: 'null'
              median_price:
                anyOf:
                  - type: number
                  - type: 'null'
              max_price:
                anyOf:
                  - type: number
                  - type: 'null'
              crawled_at:
                anyOf:
                  - type: string
                  - type: 'null'
              source:
                type: string
            required:
              - id
              - domain
              - name
              - country
              - industry
              - category
              - product_count
              - variant_count
              - min_price
              - median_price
              - max_price
              - crawled_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_`.

````