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

# Store enrichment

> Enrich known Shopify store domains from the StoreInspect database.

Use `GET /stores/{domain}` to enrich one known domain or `POST /stores/enrich` to enrich a batch of known domains.

V1 enrichment is database-only. It does not live-scan uncached domains.

## Enrich one domain

```bash theme={null}
curl https://storeinspect.com/api/v1/stores/example.com \
  -H "Authorization: Bearer $STOREINSPECT_API_KEY"
```

## Enrich a batch

```bash theme={null}
curl https://storeinspect.com/api/v1/stores/enrich \
  -H "Authorization: Bearer $STOREINSPECT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "domains": ["example.com", "another-example.com"],
    "include": ["store", "contacts_summary"]
  }'
```

## Contact previews

Some plans and keys can request `contact_previews` during enrichment. Preview data remains reveal-safe and does not include raw contact channels.

Use `POST /contacts/reveal` when you need the actual contact bundle.
