Skip to main content
POST
/
api
/
public
/
v1
/
ai
/
parse-jd
Parse Job Description
curl --request POST \
  --url https://api.tidyhire.app/api/public/v1/ai/parse-jd \
  --header 'Content-Type: application/json' \
  --header 'x-tidyhire-api-key: <api-key>' \
  --data '
{
  "job_description": "We are looking for a Senior Software Engineer..."
}
'
{
  "success": true,
  "data": {
    "min_experience": 3,
    "max_experience": 5,
    "seniority_level": "Senior",
    "work_type": "Remote",
    "employment_type": "Full Time",
    "location": "San Francisco, CA",
    "skills_required": [
      "<string>"
    ],
    "skills_good_to_have": [
      "<string>"
    ]
  }
}
This endpoint is AI-powered. It uses a large language model to intelligently extract structured job requirements from free-text job descriptions.
What it extracts:
  • Experience & seniority level
  • Work type & employment type
  • Location
  • Must-have and good-to-have skills

Authorizations

x-tidyhire-api-key
string
header
required

Your Tidyhire API key

Body

application/json
job_description
string
required
Minimum string length: 1
Example:

"We are looking for a Senior Software Engineer..."

Response

Success.

success
boolean
Example:

true

data
object
Last modified on June 11, 2026