Back to Resume Parsing & Intelligence
Get Verification
Retrieves a single verification result by its verification ID.
Request Details
path Parameters
| Field | Type | Required | Description | 
|---|---|---|---|
| id | string  | Yes | The unique identifier of the verification | 
Sample Request & Response
GET
/v1/verifications/{id}Sample Request
Headers:
{
  "Authorization": "Bearer <YOUR_API_KEY>"
}Path Parameters:
{
  "id": "string (required) - The unique identifier of the verification"
}Sample Response (200)
{
  "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
    }
  ]
}