# Houjin Agentic JP - Japanese Corporate Search

> Houjin Agentic JP - Japanese Corporate Search is a paid API for AI agents from houjin.agentic-jp.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Search Japanese corporate registry records by query string and return matching company results including corporate numbers and details.

## Facts

- Endpoint: POST https://houjin.agentic-jp.com/search
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/houjin-agentic-jp-japanese-corporate-search-8b047a65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fjw6Fq03Cte72Ru0u_nqR

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 houjin-agentic-jp-japanese-corporate-search-8b047a65 -d '<json body>'
```

Example prompt: Can you search the Japanese corporate registry for 'Toyota Motor Corporation' and get me their official corporate number and registered address?

## When to prefer this

Use this endpoint when you need to look up Japanese corporate records, retrieve official corporate numbers (法人番号), or verify the existence and details of a company registered in Japan. Prefer this over generic web search when structured, authoritative data from the Japanese national corporate registry is required.

## Known failure modes

- No matching companies found for the query — empty results array returned
- Query string in unsupported character set or encoding causes parse error
- Service unavailable or payment not processed — HTTP 402 or 503 returned
- Ambiguous query returns too many results with no single clear match
- Non-Japanese company queried returns no results since database covers JP corporations only

## How this service works

Japanese company search: look up companies in the official JP corporate registry by trade name and/or location. Partial-name match on both the Japanese and registered English name, with width/abbreviation normalization, filterable by prefecture, city, and corporation kind. Returns up to 50 corporations with their 法人番号 and lifecycle status. Dynamic pricing: a base fee plus a small per-result fee.

## Output

A list of matching Japanese corporate records from the national registry, each containing the company name, corporate number (法人番号), registered address, and entity type. Results are filtered by the query string provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string",
   "description": "City / ward substring (\"港区\")."
  },
  "name": {
   "type": "string",
   "description": "Partial trade-name match (商号の部分一致). Width/abbreviation normalized."
  },
  "limit": {
   "type": "number",
   "description": "Max results, 1-50 (default 50)."
  },
  "corp_kind": {
   "type": "string",
   "description": "3-digit corporation-kind code (e.g. \"301\" = stock company)."
  },
  "prefecture": {
   "type": "string",
   "description": "Prefecture name (\"東京都\") or JIS prefecture code (\"13\")."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "city": "港区",
    "name": "国立印刷局",
    "status": "active",
    "street": "虎ノ門二丁目2番5号",
    "name_en": null,
    "corp_kind": "101",
    "name_kana": null,
    "address_en": null,
    "close_date": null,
    "prefecture": "東京都",
    "change_date": "2015-10-05",
    "close_cause": null,
    "postal_code": "1058445",
    "update_date": "2018-04-02",
    "address_full": "東京都港区虎ノ門二丁目2番5号",
    "process_kind": "01",
    "assignment_date": "2015-10-05",
    "corp_kind_label": "National government agency",
    "prefecture_code": "13",
    "corporate_number": "7000012050002",
    "close_cause_label": null,
    "successor_corporate_number": null
   }
  ],
  "truncated": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/houjin-agentic-jp-japanese-corporate-search-8b047a65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from houjin.agentic-jp.com](https://www.zero.xyz/host/houjin.agentic-jp.com/llms.txt)
