JSIC (Japan Standard Industrial Classification) codes classify Japanese businesses into industries. Required for KYC, B2B segmentation, and statistical reporting.
https://torify.dev/v1/industry/lookup
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
code |
string | No | JSIC code | 6201 |
{ "ok": true, "data": { "code": "6201", "name": "..." } }
curl "https://torify.dev/v1/industry/lookup"
import { wrapFetchWithPayment } from 'x402-fetch';
import { privateKeyToAccount } from 'viem/accounts';
const account = privateKeyToAccount(process.env.PRIVATE_KEY as `0x${string}`);
const fetchWithPayment = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPayment(
'https://torify.dev/v1/industry/lookup'
);
const data = await res.json();
console.log(data); // { ok: true, data: { ... } }
import requests
# Free MCP tier (no auth) or API key (X-API-Key header)
res = requests.get(
"https://torify.dev/v1/industry/lookup",
headers={"X-API-Key": "your_torify_pro_key"}
)
print(res.json())
/v1/houjin/lookup — Japanese Corporate Number Lookup: Houjin Bangou (法人番号) API