API Reference · integration
Enrich Shopify customers via API
B2B-flavor enrichment on Shopify customers — identify wholesale buyers.
Endpoint
POST https://api.cleanlist.ai/v1/enrich/shopify_customerRequest
POST https://api.cleanlist.ai/v1/enrich/shopify_customer
Authorization: Bearer clnl_live_...
Content-Type: application/json
{
"email": "jane@acme.com"
}Response
{
"id": "ev_abc123",
"shopify_customer": {
"shopify_customer_id": "<shopify_customer_id>",
"email": "<email>",
"is_business_email": "<is_business_email>",
"company": "<company>"
},
"meta": {
"credits_used": 11,
"providers_queried": 15
}
}Field reference
| Field | Type | Description |
|---|---|---|
| shopify_customer_id | string | — |
| string | — | |
| is_business_email | string | — |
| company | string | — |
Code samples
curl
curl -X POST https://api.cleanlist.ai/v1/enrich/shopify_customer \
-H "Authorization: Bearer $CLEANLIST_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "jane@acme.com"}'Node.js
import Cleanlist from "cleanlist";
const client = new Cleanlist(process.env.CLEANLIST_API_KEY);
const result = await client.enrich.shopify_customer({
email: "jane@acme.com",
});
console.log(result.shopify_customer.title);Python
from cleanlist import Cleanlist
client = Cleanlist(api_key=os.environ["CLEANLIST_API_KEY"])
result = client.enrich.shopify_customer(email="jane@acme.com")
print(result["shopify_customer"]["title"])Pricing
Credit-based, no per-seat fees. This endpoint uses the standard enrichment rate:
- Email only: 1 credit per enriched shopify_customer.
- Email + phone: 11 credits per enriched shopify_customer.
- Free tier: 30 credits/mo. See all pricing.
Next steps
- Full REST reference: /product/api.
- Related glossary: data enrichment, waterfall enrichment.
- Ready to ship? Start free with 30 credits.