# Denpyo Japan Invoice & Receipt Reader API — Registration Number Verifier

> Denpyo Japan Invoice & Receipt Reader API — Registration Number Verifier is a paid API for AI agents from denpyo-api.hp-vladic.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up and verifies a Japanese business registration number (T + 13 digits) against the national qualified invoice issuer registry, optionally fuzzy-matching by issuer name.

## Facts

- Endpoint: GET https://denpyo-api.hp-vladic.workers.dev/verify
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/denpyo-japan-invoice-receipt-reader-api-registration-number-verifier-6d3850d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qK5y9RA5CW74ebmoVngPm

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 denpyo-japan-invoice-receipt-reader-api-registration-number-verifier-6d3850d2
```

Example prompt: Can you verify whether registration number T1234567890123 belongs to a qualified invoice issuer in Japan — the company name should be something like 'Yamada Electronics'?

## When to prefer this

Use this endpoint when you need to verify a Japanese qualified invoice issuer registration number (T-number) against the national registry, particularly for accounts payable, tax compliance, or supplier onboarding workflows involving Japanese consumption tax invoices. Prefer this over manual registry lookup when automating invoice validation at scale.

## Known failure modes

- Invalid or malformed registration number (non-T-prefix or wrong digit count) — returns validation error
- Registration number not found in the qualified invoice issuer registry — returns not-found result
- Fuzzy name match fails to find a close match — may return empty or mismatched result
- Payment not processed — 402 Payment Required before the lookup is executed
- Network or upstream registry unavailability — returns server error

## How this service works

Verify a Japanese qualified-invoice registration number (適格請求書発行事業者 インボイス登録番号 / T番号, T+13 digits) against Japan's National Tax Agency (国税庁) registry — no OCR. Returns qualified/cancelled/not-found, registration date, registered name (法人名), corporate number (法人番号) and registry record, checksum, plus optional fuzzy name-match (&name=). Cheapest pre-payment counterparty check for Japanese invoices (請求書).

## Output

Returns the verification status of the Japanese invoice registration number, including whether the business is a registered qualified invoice issuer, along with issuer details such as name and registration validity, optionally filtered by fuzzy name match.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "number"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Optional issuer name for fuzzy match"
      },
      "number": {
       "type": "string",
       "description": "Registration number, T + 13 digits (T optional)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/denpyo-japan-invoice-receipt-reader-api-registration-number-verifier-6d3850d2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from denpyo-api.hp-vladic.workers.dev](https://www.zero.xyz/host/denpyo-api.hp-vladic.workers.dev/llms.txt)
