# Toll402 MERSİS Number Validator

> Toll402 MERSİS Number 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-14).

Validates a Turkish MERSİS (Merkezi Sicil Kayıt Sistemi) company registration number offline, returning whether it is structurally valid.

## Facts

- Endpoint: POST https://toll402.dev/v1/t/mersis_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-mersi-s-number-validator-715dc0de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0kGn6Q4Bq_zFpaiiLngkk

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-mersi-s-number-validator-715dc0de -d '<json body>'
```

Example prompt: Can you check if the MERSİS number 0123456789012345 is valid?

## When to prefer this

Use this endpoint when you need a fast, offline, zero-signup structural validation of a Turkish MERSİS company registration number — ideal for compliance pipelines, onboarding flows, or invoice verification where you don't need a live government registry lookup. Prefer this over full registry lookups when speed and cost matter and structural correctness is sufficient.

## Known failure modes

- Invalid or missing 'value' field returns a validation error
- Non-numeric or incorrectly formatted input may return ok: false
- Network timeout or service unavailability returns an HTTP error
- Passing a non-MERSİS Turkish identifier (e.g. VKN/tax number) may produce incorrect results

## 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 field indicating whether the supplied MERSİS number is structurally valid (true) or not (false). The check is performed offline without contacting Turkish government databases.

## 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": [
      "value"
     ],
     "properties": {
      "value": {
       "type": "string",
       "description": "MERSİS number to validate, digits optionally separated by spaces or 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-mersi-s-number-validator-715dc0de/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)
