API Docs
Back to Matching & Tailoring

Tailoring

Tailors a resume to a given job by rewriting relevant sections (summary, experience, skills) to align with the job description.

Request Details

path Parameters

FieldTypeRequiredDescription
id
string
YesThe unique identifier of the resume

Sample Request & Response

POST
/v1/resumes/{id}/tailor
Sample Request

Headers:

{
  "Authorization": "Bearer <YOUR_API_KEY>"
}

Path Parameters:

{
  "id": "string (required) - The unique identifier of the resume"
}

Body:

{
  "job": {
    "text": "Job description text or jobId",
    "jobId": "(optional) If already parsed"
  }
}
Sample Response (200)
{
  "$ref": "TailoredResume"
}