Skip to main content
GET
/
humanverification
/
skills
/
{recordVerificationId}
curl https://api.yourservice.com/api/v1/humanverification/skills/ver_live_abc123
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "skills": [
      {
        "skillId": "skill_001",
        "name": "React",
        "proofUrls": ["https://github.com/user/project"]
      },
      {
        "skillId": "skill_002",
        "name": "Node.js",
        "proofUrls": []
      }
    ]
  }
}
Intended for the reviewer’s frontend to display what they are being asked to endorse, including proof URLs.
No authentication required. Accessed from the reviewer’s email link.

Path Parameters

recordVerificationId
string
required
The verification session ID.

Error Codes

CodeHTTPDescription
MISSING_VERIFICATION_ID400Path parameter is missing
NO_SKILLS_FOUND404No skills found for this session
INTERNAL_ERROR500Unexpected server error
curl https://api.yourservice.com/api/v1/humanverification/skills/ver_live_abc123
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "skills": [
      {
        "skillId": "skill_001",
        "name": "React",
        "proofUrls": ["https://github.com/user/project"]
      },
      {
        "skillId": "skill_002",
        "name": "Node.js",
        "proofUrls": []
      }
    ]
  }
}