API Reference · file
Enrich Google Sheets via API
Enrich a Google Sheet via a single =CLEANLIST() formula.
Endpoint
POST https://api.cleanlist.ai/v1/enrich/sheet_rowRequest
POST https://api.cleanlist.ai/v1/enrich/sheet_row
Authorization: Bearer clnl_live_...
Content-Type: application/json
{
"email": "jane@acme.com"
}Response
{
"id": "ev_abc123",
"sheet_row": {
"cell_ref": "<cell_ref>",
"input": "<input>",
"enriched_field": "<enriched_field>",
"confidence": "<confidence>"
},
"meta": {
"credits_used": 11,
"providers_queried": 15
}
}Field reference
| Field | Type | Description |
|---|---|---|
| cell_ref | string | — |
| input | string | — |
| enriched_field | string | — |
| confidence | string | — |
Code samples
curl
curl -X POST https://api.cleanlist.ai/v1/enrich/sheet_row \
-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.sheet_row({
email: "jane@acme.com",
});
console.log(result.sheet_row.title);Python
from cleanlist import Cleanlist
client = Cleanlist(api_key=os.environ["CLEANLIST_API_KEY"])
result = client.enrich.sheet_row(email="jane@acme.com")
print(result["sheet_row"]["title"])Pricing
Credit-based, no per-seat fees. This endpoint uses the standard enrichment rate:
- Email only: 1 credit per enriched sheet_row.
- Email + phone: 11 credits per enriched sheet_row.
- 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.