Product

API Documentation

The sonarID REST API lets you enrich customer data, query VIP profiles, and build custom integrations into your commerce stack.

Quick start

Get up and running in minutes

  1. 01Create a sonarID account and install the Shopify app
  2. 02Generate an API key from your dashboard settings
  3. 03Make your first enrichment request with a customer email
  4. 04Use the response to trigger workflows in your existing systems
Example request
curl -X POST \
  https://api.sonarid.co/v1/enrich \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "customer@example.com",
    "name": "Jane Smith",
    "order_id": "12345"
  }'
Core endpoints
POST/v1/enrichEnrich a customer by email, name, or phone number
GET/v1/customers/:idRetrieve enrichment data for a known customer
GET/v1/orders/:id/enrichmentGet VIP intelligence for a specific Shopify order
GET/v1/customersList enriched customers with optional VIP filter
POST/v1/webhooksRegister a webhook URL for real-time enrichment events

Full API reference coming soon

We're building out comprehensive interactive docs. In the meantime, contact us for API access.

Request API access