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 document types
      • POSTCreate a document type
      • DELDelete a document type
      • PATCHUpdate a document type
      • GETList document groups
      • POSTCreate a document group
      • DELDelete a document group
      • PATCHUpdate a document group
API ReferenceDocument Types

List document types

GET
https://devapi.withverifa.com/api/v1/settings/document-types
GET
/api/v1/settings/document-types
$curl https://devapi.withverifa.com/api/v1/settings/document-types \
> -H "X-API-Key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "id": "doc_8f3a2b7c9d4e",
5 "org_id": "org_5a7c9e2f1b3d",
6 "slug": "auto-insurance-card",
7 "label": "Auto Insurance Card",
8 "category": "financial",
9 "is_active": true,
10 "created_at": "2024-01-15T09:30:00Z",
11 "updated_at": "2024-01-15T09:30:00Z",
12 "description": "Auto insurance proof-of-coverage card showing policy number, VIN, named insured, and effective and expiration dates of coverage.",
13 "extraction_hints": {
14 "vin": "Vehicle Identification Number, 17 alphanumeric characters",
15 "policy_number": "Insurance policy reference number",
16 "issue_date": "Effective start date of the policy (YYYY-MM-DD)",
17 "expiry_date": "End date of the policy coverage (YYYY-MM-DD)"
18 },
19 "check_suite": [
20 [
21 "document_authenticity",
22 "identity",
23 "required"
24 ],
25 [
26 "policy_validity",
27 "financial",
28 "optional"
29 ]
30 ]
31 }
32 ]
33}

Returns all custom document types configured for your organization.

Required scope: documents:read.

Was this page helpful?
Previous

Create a document type

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.

Response

A list of document types.
datalist of objects

Errors

401
Unauthorized Error