For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Introduction
    • How Verifa Works
    • Quickstart
    • Choosing an Integration Method
  • Use Cases
    • KYC Onboarding
    • Age Verification
    • AML Compliance
    • Fraud Prevention
    • Marketplace Trust & Safety
  • Core Concepts
    • Overview
    • Sessions
    • Verifications & Checks
    • Workflows
    • Identities
    • Cases
    • Screening & Reports
    • Lists
  • Integration Guides
    • Overview
    • JavaScript SDK
    • Web Capture Flow
    • API-Only Integration
    • Mobile SDK
    • Webhooks Guide
    • MCP Server
    • Migrating from Persona
  • API Details
    • Overview
    • Authentication
    • Pagination
    • Rate Limiting
    • Versioning
    • Errors
    • Webhooks
    • Idempotency
    • Key Inflection
    • Data Access
    • Data Retention
  • Tutorials
    • Creating Your First Verification Session
    • Creating a Workflow
    • Receiving Webhooks & Validating Signatures
    • Handling Webhook Events
    • Custom Document Types & AI Extraction
  • Best Practices
    • Testing
    • Preventing Duplicates
    • Fraud Signals
    • Changelog
  • API Reference
      • GETList verification results
      • GETGet verification result
API ReferenceResults

Get verification result

GET
https://devapi.withverifa.com/api/v1/results/:session_id
GET
/api/v1/results/:session_id
$curl https://devapi.withverifa.com/api/v1/results/session_id \
> -H "X-API-Key: <apiKey>"
1{
2 "session_id": "string",
3 "status": "needs_review",
4 "created_at": "2024-01-15T09:30:00Z",
5 "external_ref": "string",
6 "result": {
7 "face_match_passed": true,
8 "face_match_score": 1.1,
9 "age_check_passed": true,
10 "extracted_age": 1,
11 "extracted_data": {
12 "first_name": "string",
13 "last_name": "string",
14 "date_of_birth": "string",
15 "address": {
16 "line1": "string",
17 "line2": "string",
18 "city": "string",
19 "state": "string",
20 "zip": "string"
21 },
22 "document_number": "string",
23 "nationality": "string",
24 "gender": "string",
25 "ssn": "string",
26 "document_type": "string",
27 "document_expiration_date": "string",
28 "document_issuing_state": "string"
29 }
30 },
31 "rejection_reason": "string",
32 "rejection_reason_code": "document_unreadable",
33 "processing_mode": "string",
34 "sensitive_data_expired": true
35}

Alternative endpoint for retrieving a verification result by session ID. Returns the same data as the session result endpoint, with an additional external_ref field.

Was this page helpful?
Previous

List identities

Next
Built with

Authentication

X-API-Keystring

Organization API key. Keys are prefixed with vk_live_ (production) or vk_sandbox_ (sandbox).

Path parameters

session_idstringRequired

Session ID (ses_*).

Headers

Verifa-VersiondateOptional

API version date string (e.g. 2026-02-01). If omitted, the version pinned to your API key is used.

Key-InflectionenumOptionalDefaults to snake

Response key casing. Defaults to snake.

Allowed values:

Response

Verification result.
session_idstring
statusenum
Allowed values:
created_atdatetime
external_refstring or null
resultobject
rejection_reasonstring or null
rejection_reason_codeenum

Structured reason a verification was rejected. Complements the free-text rejection_reason. Stable enum — clients can pivot UI and metrics off this without parsing prose.

processing_modestring or null
sensitive_data_expiredboolean

Present and true when the sensitive data access window has elapsed.

Errors

401
Unauthorized Error
404
Not Found Error