Skip to main content
POST
/
stores
/
enrich
Enrich stores
curl --request POST \
  --url https://storeinspect.com/api/v1/stores/enrich \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domains": [
    "<string>"
  ],
  "include": [
    "store",
    "technologies"
  ],
  "contact_roles": [
    "<string>"
  ],
  "max_contacts_per_store": 1,
  "reveal_contacts": false
}
'
{
  "object": "<string>",
  "data": [
    {
      "domain": "<string>",
      "store": {
        "id": "<string>",
        "object": "<string>",
        "domain": "<string>",
        "name": "<string>",
        "category": "<string>",
        "country": "<string>",
        "traffic_tier": "<string>",
        "revenue_tier": "<string>",
        "shopify_plus": true,
        "lead_fit_score": 123,
        "technologies": {
          "apps": [
            "<string>"
          ],
          "pixels": [
            "<string>"
          ],
          "theme": {
            "name": "<string>",
            "type": "<string>"
          }
        },
        "contacts_summary": {
          "total": 123,
          "has_revealable_contacts": true,
          "verified_email_count": 123,
          "roles": [
            "<string>"
          ]
        }
      },
      "contact_previews": [
        {
          "id": "<string>",
          "object": "<string>",
          "first_name": "<string>",
          "last_name_obfuscated": "<string>",
          "role": "<string>",
          "title": "<string>",
          "has_verified_email": true,
          "has_phone": true,
          "has_linkedin": true,
          "revealed": true,
          "store": {
            "id": "<string>",
            "domain": "<string>",
            "name": "<string>",
            "category": "<string>",
            "traffic_tier": "<string>",
            "technologies": {
              "apps": [
                "<string>"
              ],
              "pixels": [
                "<string>"
              ]
            }
          }
        }
      ]
    }
  ],
  "found": 1,
  "not_found": 1,
  "request_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
domains
string[]
required

Store domains or URLs to enrich. Inputs are normalized to hostnames.

Required array length: 1 - 25 elements
include
enum<string>[]
Available options:
store,
technologies,
contact_previews
contact_roles
string[]
Maximum array length: 50
max_contacts_per_store
integer
default:1
Required range: 1 <= x <= 10
reveal_contacts
boolean
default:false

Must be false in V1 synchronous enrichment. Use /api/v1/contacts/reveal to reveal contacts.

Response

Found and not-found rows for a small set of domains already present in the StoreInspect database.

object
string
required
Allowed value: "store_enrichment_result"
data
object[]
required
found
integer
required
Required range: x >= 0
not_found
integer
required
Required range: x >= 0
request_id
string
required