# Relaystation ID Verify

> Relaystation ID Verify is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Performs full KYC in a single API call — verifying a government-issued ID, running liveness detection, and matching the applicant's face to the ID photo.

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/idverify/verifications
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-id-verify-d7b93234
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5nT0WUBrts1fcXrsMtBZr

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 relaystation-id-verify-d7b93234 -d '<json body>'
```

Example prompt: Run a full KYC check on this new user — verify their government ID image, confirm the selfie liveness, and match their face to the ID photo before we let them proceed.

## When to prefer this

Choose this endpoint when you need a single-call, all-in-one KYC solution combining government ID verification, liveness detection, and face matching — especially within an existing Relaystation workflow where you can pair it with /v1/esigndoc for verify-then-sign flows or /v1/screening for sanctions checks, all on one unified balance. Ideal for agents that need compliant identity verification without integrating multiple separate KYC vendors.

## Known failure modes

- Low-quality or blurry ID image causing document read failure
- Liveness check failure if the selfie is a photo of a photo
- Face mismatch if the person submitting differs from the ID
- Unsupported ID type or country not recognized
- Expired or tampered documents rejected
- Insufficient lighting in selfie causing liveness failure
- Missing required fields returns 400 validation error
- Payment failure if account balance is insufficient for $0.10 charge

## How this service works

$0.10/verification. Full KYC in one call — government-ID verification, liveness detection, and face-to-ID matching. Pair with /v1/esigndoc for verify-then-sign and /v1/screening for sanctions. One of 155 Relaystation tools on one balance — relaystation.ai

## Output

Returns a structured KYC result including: overall verification status (pass/fail), document authenticity assessment, liveness detection outcome, and a face-to-ID match confidence score. Likely includes extracted identity fields from the government ID (name, DOB, document number) and individual sub-check results.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "type": {
       "type": "string",
       "enum": [
        "document",
        "liveness",
        "biometric"
       ],
       "description": "Subject to the idverify.allowed_types tunable — a disallowed type is a free 422 TYPE_NOT_ALLOWED."
      },
      "addons": {
       "type": "object",
       "properties": {
        "aml": {
         "type": "boolean",
         "description": "Screen the OCR'd holder name against sanctions + PEP (our engine, Briefs 197/198) once the verification completes; the result attaches as `amlScreening` on status/detail. Gated by the idverify.aml.enabled tunable (a request while disabled → free 422 AML_NOT_ENABLED). A one-time addon fee (idverify.aml_addon) applies when the screening runs."
        }
       }
      },
      "sandbox": {
       "type": "boolean"
      },
      "metadata": {
       "type": "object",
       "description": "Caller metadata echoed back; serialized ≤ 4 KB."
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-id-verify-d7b93234/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
