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

# Search stores

> Searches Shopify stores by focused ICP filters with stable sorting, cursor pagination, broad-search guardrails, and monthly search-row quotas.



## OpenAPI

````yaml /openapi.json post /stores/search
openapi: 3.1.0
info:
  title: StoreInspect API
  version: 1.0.0
  description: >-
    Database-backed Shopify store and contact intelligence API. V1 access
    requires a paid StoreInspect plan.
servers:
  - url: https://storeinspect.com/api/v1
security: []
tags:
  - name: usage
    x-displayName: Usage
    x-group: Usage
    description: >-
      API access state, request quotas, search-row quota, and shared
      contact-credit usage.
  - name: taxonomy
    x-displayName: Taxonomy
    x-group: Taxonomy
    description: >-
      Filter values, labels, and metadata used by store and contact search
      requests.
  - name: stores
    x-displayName: Stores
    x-group: Stores
    description: >-
      Store lookup, store search, and batch domain enrichment for Shopify
      accounts.
  - name: contacts
    x-displayName: Contacts
    x-group: Contacts
    description: Contact preview search and credit-based contact reveal workflows.
paths:
  /stores/search:
    post:
      tags:
        - stores
      summary: Search stores
      description: >-
        Searches Shopify stores by focused ICP filters with stable sorting,
        cursor pagination, broad-search guardrails, and monthly search-row
        quotas.
      operationId: searchStores
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StoreSearchRequest'
      responses:
        '200':
          description: A cursor-paginated list of stores matching the supplied filters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StoreListResponse'
        '400':
          description: Invalid filters, limit, or cursor.
        '401':
          description: Missing or invalid API key.
        '403':
          description: The account does not have API access.
      security:
        - bearerAuth: []
components:
  schemas:
    StoreSearchRequest:
      type: object
      additionalProperties: false
      properties:
        filters:
          $ref: '#/components/schemas/StoreSearchFilters'
        limit:
          type: integer
          minimum: 1
          maximum: 100
          default: 25
        cursor:
          type:
            - string
            - 'null'
          pattern: ^cur_[A-Za-z0-9_-]+$
          default: null
      required:
        - filters
    StoreListResponse:
      type: object
      properties:
        object:
          type: string
          const: list
        data:
          type: array
          items:
            $ref: '#/components/schemas/Store'
        has_more:
          type: boolean
        next_cursor:
          type:
            - string
            - 'null'
        request_id:
          type: string
      required:
        - object
        - data
        - has_more
        - next_cursor
        - request_id
    StoreSearchFilters:
      type: object
      additionalProperties: false
      properties:
        categories:
          type: array
          items:
            type: string
          maxItems: 50
        countries:
          type: array
          items:
            type: string
          maxItems: 50
        traffic_tiers:
          type: array
          items:
            type: string
          maxItems: 50
        revenue_tiers:
          type: array
          items:
            type: string
          maxItems: 50
        shopify_plus:
          type: boolean
        apps:
          $ref: '#/components/schemas/StoreTechnologyFilter'
        pixels:
          $ref: '#/components/schemas/StoreTechnologyFilter'
        themes:
          type: object
          additionalProperties: false
          properties:
            types:
              type: array
              items:
                type: string
                enum:
                  - free
                  - paid
                  - custom
              maxItems: 50
        meta_ads:
          type: object
          additionalProperties: false
          properties:
            active_ads_min:
              type: integer
              minimum: 0
              maximum: 100000
        contacts:
          type: object
          additionalProperties: false
          properties:
            has_revealable_contacts:
              type: boolean
            roles_any:
              type: array
              items:
                type: string
              maxItems: 50
    Store:
      type: object
      properties:
        id:
          type: string
          pattern: ^st_[A-Za-z]+_[A-Za-z]{16}$
        object:
          type: string
          const: store
        domain:
          type: string
        name:
          type: string
        category:
          type:
            - string
            - 'null'
        country:
          type:
            - string
            - 'null'
        traffic_tier:
          type:
            - string
            - 'null'
        revenue_tier:
          type:
            - string
            - 'null'
        shopify_plus:
          type: boolean
        lead_fit_score:
          type:
            - number
            - 'null'
        technologies:
          type: object
          properties:
            apps:
              type: array
              items:
                type: string
            pixels:
              type: array
              items:
                type: string
            theme:
              type: object
              properties:
                name:
                  type:
                    - string
                    - 'null'
                type:
                  type:
                    - string
                    - 'null'
        contacts_summary:
          type: object
          properties:
            total:
              type: integer
            has_revealable_contacts:
              type: boolean
            verified_email_count:
              type: integer
            roles:
              type: array
              items:
                type: string
    StoreTechnologyFilter:
      type: object
      additionalProperties: false
      properties:
        any:
          type: array
          items:
            type: string
          maxItems: 50
        none:
          type: array
          items:
            type: string
          maxItems: 50
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: StoreInspect API key

````