# Japanese Company Data Lookup

> Japanese Company Data Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.864/call, status unknown (last checked 2026-09-14).

Look up official Japanese company information by 13-digit corporate number or company name from the Japanese corporate registry

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/japanese-company-data
- Price: $0.864/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japanese-company-data-lookup-d43da8dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YOaVF4wPmH_Fa6oxhu7zj

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 japanese-company-data-lookup-d43da8dd
```

Example prompt: Can you look up the official company details for Toyota Motor Corporation using its Japanese corporate number 4120001004566?

## When to prefer this

Use this endpoint when you need authoritative, registry-sourced data about Japanese corporations — particularly for KYC, vendor due diligence, compliance checks, or business partner verification in Japan. Prefer this over web-scraping or unverified sources when you need a cryptographic audit trail. For other countries, use the appropriate country-specific sibling endpoints (e.g. Austrian Firmenbuch lookup for Austria).

## Known failure modes

- Invalid or non-existent corporate number returns no results or 404
- Company name search may return multiple matches requiring disambiguation
- Non-Japanese companies or individuals not found in this registry
- Malformed 13-digit number (wrong length or format) rejected with validation error
- Rate limiting or payment failure if USDC balance is insufficient for x402 micropayment

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns official Japanese corporate registry data including the company's registered name (in Japanese and romanized), 13-digit corporate number, registered address, corporate type (e.g. kabushiki kaisha), registration date, update history, and current status. Each response includes a cryptographic audit record with chain hashing for verification.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "corporate_number"
     ],
     "properties": {
      "corporate_number": {
       "type": "string",
       "description": "13-digit corporate number or company name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japanese-company-data-lookup-d43da8dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
