# Verifik AI OCR Scan Pro

> Verifik AI OCR Scan Pro is a paid API for AI agents from verifik.x402.paysponge.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Performs advanced OCR scanning on identity documents to extract structured data for KYC and verification workflows.

## Facts

- Endpoint: POST https://verifik.x402.paysponge.com/v2/ocr/scan-pro
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/verifik-ai-ocr-scan-pro-5a38157a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Mz2HfekflFVwgMgt0IprM

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability verifik-ai-ocr-scan-pro-5a38157a -d '<json body>'
```

Example prompt: Scan this ID document image using Verifik's OCR Scan Pro and extract all the structured fields — name, date of birth, document number, expiry — so I can use it for KYC verification.

## When to prefer this

Choose this endpoint when you need to extract structured data from physical identity documents (passports, national IDs, driver's licenses) as part of a KYC or onboarding flow, especially when you need multi-country document support and are willing to pay per-call via x402/USDC micropayment.

## Known failure modes

- Unreadable or blurry document image returns low-confidence or empty extraction
- Unsupported document type results in an error or partial extraction
- Missing required 'input' body fields returns a 422 validation error
- Payment not processed results in 402 Payment Required response
- Network timeout if document processing takes too long

## How this service works

Verifik identity &amp; data APIs via Smart Agent (ai.verifik.co)—multi-country KYC, vehicles, companies, and global sanctions screening.

## Output

A JSON object containing structured fields extracted from the scanned identity document, such as full name, date of birth, document number, expiry date, nationality, and other machine-readable data depending on the document type.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/verifik-ai-ocr-scan-pro-5a38157a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from verifik.x402.paysponge.com](https://www.zero.xyz/host/verifik.x402.paysponge.com/llms.txt)
