# Toll402 Cedula DO Validate

> Toll402 Cedula DO Validate is a paid API for AI agents from toll402.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Validates a Dominican Republic cédula (national ID) number, with or without dashes, and returns whether it is valid

## Facts

- Endpoint: POST https://toll402.dev/v1/t/cedula_do_validate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toll402-cedula-do-validate-cebce660
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HiEbb4Bg2crPrV1azGFG_

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 toll402-cedula-do-validate-cebce660 -d '<json body>'
```

Example prompt: Can you check if the Dominican Republic cédula number 001-1234567-8 is valid?

## When to prefer this

Use this endpoint when you need to validate Dominican Republic cédula (national ID) numbers as part of KYC, identity verification, or form validation workflows. It accepts numbers with or without dashes, making it flexible for various input formats. It is a low-cost ($0.001 USDC) pay-per-call API requiring no signup or API key, ideal for agents that need sporadic or on-demand ID validation without a subscription.

## Known failure modes

- Invalid or malformed cedula number returns ok: false
- Non-string or missing id field returns a schema validation error
- Payment failure via x402 results in HTTP 402 with no validation performed
- Network timeout or upstream service unavailability returns an error response

## How this service works

The OpenRouter for AI-agent tools: one gateway, one wallet, every capability. Built-in tools, forged tools, a global verified business directory and 2,000+ aggregated x402 services, all paid per call in USDC via x402 (HTTP 402). No signup, no API key.

## Output

Returns a JSON object with an 'ok' boolean field indicating whether the provided cédula number is valid according to Dominican Republic national ID validation rules.

## 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",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Cedula number, with or without dashes"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toll402-cedula-do-validate-cebce660/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toll402.dev](https://www.zero.xyz/host/toll402.dev/llms.txt)
