FlashApply API Docs
Need help?
Back to Resume Parsing & Intelligence

Verification

Verifies resume content such as education, work history, and contact details using available external sources.

Sample Request & Response

POST
/v1/verifications
Sample Request

Headers:

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

Body:

{
  "resumeId": "string (required) - The unique identifier of the resume to verify",
  "work": [
    {
      "entryId": "work_abc123"
    },
    {
      "entryId": "work_def456"
    }
  ],
  "education": [
    {
      "entryId": "edu_ghi789"
    }
  ],
  "social": [
    {
      "entryId": "social_jkl012"
    }
  ]
}
Sample Response (200)
{
  "id": "verification_12345",
  "resumeId": "resume_abc123",
  "work": [
    {
      "entryId": "work_1",
      "verified": true,
      "method": "manual",
      "status": "complete",
      "verifiedFields": [
        "company",
        "position",
        "dates"
      ],
      "notes": "Verified via LinkedIn",
      "createdAt": 1691379200000,
      "updatedAt": 1691381200000,
      "completedAt": 1691381300000
    }
  ],
  "education": [
    {
      "entryId": "edu_1",
      "verified": false,
      "method": "manual",
      "status": "failed",
      "notes": "Institution not found",
      "createdAt": 1691379300000,
      "updatedAt": 1691380300000
    }
  ],
  "social": [
    {
      "entryId": "social_1",
      "network": "LinkedIn",
      "url": "https://linkedin.com/in/example",
      "verified": true,
      "method": "automatic",
      "status": "complete",
      "createdAt": 1691379400000,
      "updatedAt": 1691380400000,
      "completedAt": 1691380500000
    }
  ]
}