POST
/
titles
/
normalize
curl --request POST \
  --url https://public.api.inop.ai/v1/titles/normalize \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "term": "Data scientist in Remote (EU)"
}'
{
  "success": true,
  "messages": "Normalized job title",
  "data": {
    "id": "d1ae83a0-0bd2-5354-8c0e-1eefbbe1131e",
    "name": "Data Scientist",
    "confidence": 1,
    "job_levels": []
  }
}

Normalize a raw job title string to the best matching INOP title

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
normalize unstructured job title
term
string
default:Data scientist in Remote (EU)

Response

200
application/json
Normalized job title
success
boolean
default:true
messages
string
default:Normalized job title
data
object