Skip to main content
POST
/
api
/
v1
/
bulk
/
job-titles
/
canonicalize
Bulk canonicalize (async)
curl --request POST \
  --url https://trynormalize.com/api/v1/bulk/job-titles/canonicalize \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file' \
  --form 'column=<string>' \
  --form 'exclude=<string>'
{
  "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "PENDING"
}

Authorizations

Authorization
string
header
required

API key from the dashboard. Pass as Authorization: Bearer <key>.

Headers

Idempotency-Key
string<uuid>

UUID. Repeated upload with same key returns existing job.

Body

multipart/form-data
file
file
required

CSV file.

column
string
required

Column name in CSV header for job title input.

exclude
string

JSON array of exclude terms, e.g. ["intern", "student"].

Response

Job submitted

job_id
string<uuid>
required
status
enum<string>
required
Available options:
PENDING,
RUNNING,
DONE,
FAILED