# Bulk Japan Corporate KYC Verification by Corporate Number

**Use case:** 

Bulk Japan corporate KYC verification checks several companies at once by their official 13-digit corporate numbers. This example fetches five known manufacturers and trading houses from METI's gBizINFO registry, returning legal name, representative, capital, employee count, and address for each. Swap in your own number list to verify vendors in one batch instead of checking gBizINFO one by one.

## Input

```json
{
  "searchMode": "byNumber",
  "corporateNumbers": [
    "7010401022916",
    "1010001008767",
    "1010001008734",
    "1120001037978",
    "1120001059650"
  ],
  "nameQuery": "",
  "corporateType": "",
  "prefectureCode": "",
  "capitalMin": 0,
  "capitalMax": 0,
  "employeeMin": 0,
  "employeeMax": 0,
  "existingOnly": true,
  "includeCertifications": false,
  "includeProcurement": false,
  "includeSubsidies": false,
  "includePatents": false,
  "includeCommendations": false,
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "corporate_number": {
    "label": "Corporate Number (法人番号)",
    "format": "string"
  },
  "name": {
    "label": "Japanese Legal Name",
    "format": "string"
  },
  "name_en": {
    "label": "English Legal Name",
    "format": "string"
  },
  "kana": {
    "label": "Reading (Kana)",
    "format": "string"
  },
  "representative_name": {
    "label": "Representative Name",
    "format": "string"
  },
  "postal_code": {
    "label": "Postal Code",
    "format": "string"
  },
  "location": {
    "label": "Registered Address",
    "format": "string"
  },
  "status": {
    "label": "Registry Status",
    "format": "string"
  },
  "company_url": {
    "label": "Corporate Website",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Japan Company Scraper: 4.5M+ gBizINFO Records](https://apify.com/getascraper/gbizinfo-japan-company-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/gbizinfo-japan-company-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/getascraper/gbizinfo-japan-company-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
