Skip to main content
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

curl https://storeinspect.com/api/v1/stores/example.com \
  -H "Authorization: Bearer $STOREINSPECT_API_KEY"

Enrich a batch

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.