# Ecuadorian RUC Natural Person Validator

> Ecuadorian RUC Natural Person Validator is a paid API for AI agents from toll402.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Validates whether a 13-digit Ecuadorian RUC number belongs to a natural person using offline checksum verification

## Facts

- Endpoint: POST https://toll402.dev/v1/t/ruc_ec_natural_validate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ecuadorian-ruc-natural-person-validator-1a065bf2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NuIL-GrebtISYy__Qm4Pp

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 ecuadorian-ruc-natural-person-validator-1a065bf2 -d '<json body>'
```

Example prompt: Can you check if this Ecuadorian RUC number 1713175071001 is valid for a natural person?

## When to prefer this

Choose this endpoint when you need a fast, offline-style checksum validation of an Ecuadorian natural person RUC without making external government API calls. Ideal for pre-flight validation before submitting invoices, onboarding freelancers, or KYC workflows involving Ecuadorian individuals. Prefer this over a full government lookup when low latency and no signup overhead matter.

## Known failure modes

- RUC fails checksum validation — returns ok: false
- RUC is not 13 digits — schema validation error
- RUC is valid but belongs to a company, not a natural person — may return ok: false
- Malformed input body — 400-level error
- Payment not included or insufficient — HTTP 402 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

A JSON object with an 'ok' boolean indicating whether the provided RUC passes the natural person checksum and format rules for Ecuador.

## 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": [
      "ruc"
     ],
     "properties": {
      "ruc": {
       "type": "string",
       "description": "13-digit Ecuadorian RUC for a natural person"
      }
     },
     "additionalProperties": false
    },
    "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/ecuadorian-ruc-natural-person-validator-1a065bf2/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)
