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 session documents
      • POSTUpload a document to a session
      • GETDownload a document
      • GETList documents
      • POSTUpload a standalone document
      • GETGet document metadata
      • DELRedact a document
      • PATCHUpdate document metadata
      • GETDownload a document via signed URL
      • GETPreview a document page as JPEG
      • GETList document extractions
      • GETList document checks
      • POSTTrigger document classification
      • POSTTrigger document extraction
      • POSTRun verification checks on a document
      • POSTCompare two documents
      • POSTBulk classify documents
      • POSTBulk extract documents
      • POSTBulk verify documents
      • GETList document fingerprints
      • POSTCreate a document fingerprint
      • DELDelete a document fingerprint
      • POSTFlag a document as compromised
      • POSTCompare a document to a verified identity
      • POSTRun AI-powered document insights
API ReferenceDocuments

List documents

GET
https://devapi.withverifa.com/api/v1/documents
GET
/api/v1/documents
$curl https://devapi.withverifa.com/api/v1/documents \
> -H "X-API-Key: <apiKey>"
1{
2 "data": [
3 {
4 "id": "string",
5 "document_type": "id_front",
6 "status": "pending",
7 "created_at": "2024-01-15T09:30:00Z",
8 "org_id": "string",
9 "session_id": "string",
10 "identity_id": "string",
11 "classification": "string",
12 "mime_type": "string",
13 "file_size_bytes": 1,
14 "original_filename": "string",
15 "page_count": 1,
16 "metadata": {},
17 "upload_source": "string",
18 "download_url": "string",
19 "preview_url": "string",
20 "extracted_fields": {
21 "insurer_name": "Acme Insurance",
22 "policy_number": "POL-12345678",
23 "vin": "1HGBH41JXMN109186",
24 "expiry_date": "2027-01-15"
25 },
26 "extracted_fields_confidence": {
27 "insurer_name": 0.997,
28 "policy_number": 0.981,
29 "vin": 0.95,
30 "expiry_date": 0.997
31 },
32 "updated_at": "2024-01-15T09:30:00Z"
33 }
34 ],
35 "pagination": {
36 "total": 1,
37 "limit": 1,
38 "offset": 1
39 }
40}

Returns a paginated list of documents for your organization. Redacted documents are excluded by default unless status=redacted is explicitly passed.

Required scope: documents:read

Was this page helpful?
Previous

Upload a standalone document

Next
Built with

Authentication

X-API-Keystring

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

Headers

Verifa-VersiondateOptional

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

Query parameters

standalonebooleanOptional

When true, only return standalone documents (not attached to a verification session). Defaults to false.

statusenumOptional
Filter by document status.
Allowed values:
classificationstringOptional
Filter by document classification.
session_idstringOptional
Filter by associated session ID.
identity_idstringOptional
Filter by associated identity ID.
document_typeenumOptional
Filter by document type.
Allowed values:
limitintegerOptional1-100Defaults to 50
Maximum number of documents to return.
offsetintegerOptional>=0Defaults to 0
Number of documents to skip.

Response

A list of documents.
datalist of objects
paginationobject

Errors

401
Unauthorized Error