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

# Enrich stores

> Batch enriches a small set of known Shopify store domains already present in the StoreInspect database.



## OpenAPI

````yaml /openapi.json post /stores/enrich
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/enrich:
    post:
      tags:
        - stores
      summary: Enrich stores
      description: >-
        Batch enriches a small set of known Shopify store domains already
        present in the StoreInspect database.
      operationId: enrichStores
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StoreEnrichRequest'
      responses:
        '200':
          description: >-
            Found and not-found rows for a small set of domains already present
            in the StoreInspect database.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StoreEnrichResponse'
        '400':
          description: Invalid domains or unsupported reveal mode.
        '401':
          description: Missing or invalid API key.
        '403':
          description: The account does not have API access.
      security:
        - bearerAuth: []
components:
  schemas:
    StoreEnrichRequest:
      type: object
      additionalProperties: false
      properties:
        domains:
          type: array
          minItems: 1
          maxItems: 25
          items:
            type: string
          description: Store domains or URLs to enrich. Inputs are normalized to hostnames.
        include:
          type: array
          items:
            type: string
            enum:
              - store
              - technologies
              - contact_previews
          default:
            - store
            - technologies
        contact_roles:
          type: array
          items:
            type: string
          maxItems: 50
        max_contacts_per_store:
          type: integer
          minimum: 1
          maximum: 10
          default: 1
        reveal_contacts:
          type: boolean
          default: false
          description: >-
            Must be false in V1 synchronous enrichment. Use
            /api/v1/contacts/reveal to reveal contacts.
      required:
        - domains
    StoreEnrichResponse:
      type: object
      properties:
        object:
          type: string
          const: store_enrichment_result
        data:
          type: array
          items:
            $ref: '#/components/schemas/StoreEnrichResult'
        found:
          type: integer
          minimum: 0
        not_found:
          type: integer
          minimum: 0
        request_id:
          type: string
      required:
        - object
        - data
        - found
        - not_found
        - request_id
    StoreEnrichResult:
      type: object
      properties:
        domain:
          type: string
        status:
          type: string
          enum:
            - found
            - not_found
        store:
          oneOf:
            - $ref: '#/components/schemas/Store'
            - type: 'null'
        contact_previews:
          type: array
          items:
            $ref: '#/components/schemas/ContactPreview'
      required:
        - domain
        - status
        - store
    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
    ContactPreview:
      type: object
      properties:
        id:
          type: string
          pattern: ^ct_[A-Za-z]+_[A-Za-z]{16}$
        object:
          type: string
          const: contact_preview
        first_name:
          type:
            - string
            - 'null'
        last_name_obfuscated:
          type:
            - string
            - 'null'
        role:
          type:
            - string
            - 'null'
        seniority:
          type: string
          enum:
            - executive
            - decision_maker
            - other
        title:
          type:
            - string
            - 'null'
        has_verified_email:
          type: boolean
        has_phone:
          type: boolean
        has_linkedin:
          type: boolean
        revealed:
          type: boolean
        store:
          type: object
          properties:
            id:
              type: string
              pattern: ^st_[A-Za-z]+_[A-Za-z]{16}$
            domain:
              type: string
            name:
              type: string
            category:
              type:
                - string
                - 'null'
            traffic_tier:
              type:
                - string
                - 'null'
            technologies:
              type: object
              properties:
                apps:
                  type: array
                  items:
                    type: string
                pixels:
                  type: array
                  items:
                    type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: StoreInspect API key

````