API Reference · core
Enrich job titles via API
Normalize messy job titles into seniority + function + department.
Endpoint
POST https://api.cleanlist.ai/v1/enrich/job_titleRequest
POST https://api.cleanlist.ai/v1/enrich/job_title
Authorization: Bearer clnl_live_...
Content-Type: application/json
{
"email": "jane@acme.com"
}Response
{
"id": "ev_abc123",
"job_title": {
"raw_title": "<raw_title>",
"normalized_title": "<normalized_title>",
"seniority": "<seniority>",
"department": "<department>",
"function": "<function>"
},
"meta": {
"credits_used": 11,
"providers_queried": 15
}
}Field reference
| Field | Type | Description |
|---|---|---|
| raw_title | string | — |
| normalized_title | string | — |
| seniority | string | — |
| department | string | — |
| function | string | — |
Code samples
curl
curl -X POST https://api.cleanlist.ai/v1/enrich/job_title \
-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.job_title({
email: "jane@acme.com",
});
console.log(result.job_title.title);Python
from cleanlist import Cleanlist
client = Cleanlist(api_key=os.environ["CLEANLIST_API_KEY"])
result = client.enrich.job_title(email="jane@acme.com")
print(result["job_title"]["title"])Pricing
Credit-based, no per-seat fees. This endpoint uses the standard enrichment rate:
- Email only: 1 credit per enriched job_title.
- Email + phone: 11 credits per enriched job_title.
- 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.