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

# Get store

> Enriches one known Shopify store domain from the StoreInspect database. V1 does not live-scan uncached domains.



## OpenAPI

````yaml /openapi.json get /stores/{domain}
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/{domain}:
    get:
      tags:
        - stores
      summary: Get store
      description: >-
        Enriches one known Shopify store domain from the StoreInspect database.
        V1 does not live-scan uncached domains.
      operationId: getStore
      parameters:
        - name: domain
          in: path
          required: true
          schema:
            type: string
          description: Store domain to look up. URLs are normalized to their hostname.
      responses:
        '200':
          description: >-
            Store intelligence for a domain already present in the StoreInspect
            database.
        '400':
          description: Invalid domain input.
        '401':
          description: Missing or invalid API key.
        '403':
          description: The account does not have API access.
        '404':
          description: No known store exists for the domain.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: StoreInspect API key

````