FlashApply API Docs
Need help?
Back to Matching & Tailoring

Overview

Provides an overall match rating and breakdown of missing, partial, and matched skills.

Sample Request & Response

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

Headers:

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

Body:

{
  "job": {
    "text": "Job description text or jobId"
  }
}
Sample Response (200)
{
  "matchScore": 82,
  "matchedSkills": [
    "Python",
    "AWS"
  ],
  "partialMatches": [
    "REST APIs"
  ],
  "missingSkills": [
    "Docker",
    "Kubernetes"
  ]
}