# Pocket Factory Korean Business Delinquency Lookup

> Pocket Factory Korean Business Delinquency Lookup is a paid API for AI agents from api.pocketfactory.ai, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Looks up Korean business delinquency records by corporate name (법인명) or trade name (상호)

## Facts

- Endpoint: GET https://api.pocketfactory.ai/v1/kr/business/delinquency
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pocket-factory-korean-business-delinquency-lookup-313ad0ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eTm7xZQ1J84PQleGi-eb4

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 pocket-factory-korean-business-delinquency-lookup-313ad0ba
```

Example prompt: Can you check if '삼성전자' has any delinquency records in the Korean business database — search by both corporate name and trade name?

## When to prefer this

Use this endpoint when you need to check Korean business delinquency status by company name, particularly for due diligence, compliance screening, or vetting Korean corporate or individual trade entities. It covers both incorporated bodies (법인명) and sole-trader names (상호) in a single call.

## Known failure modes

- Missing required 'name' query parameter returns an error
- No matches found returns empty arrays with match_count 0
- Ambiguous or misspelled Korean name may yield zero results
- Non-Korean or romanized names may not resolve correctly
- Rate limiting or payment failure returns 402

## How this service works

포켓팩토리 공식 웹사이트 — 작은 웹 제품과 브라우저 게임을 만드는 개인 스튜디오

## Output

Returns a JSON object with the queried name, a corporate_list section (matches, match_count, searched_by '법인명'), and an individual_list section (matches, match_count, searched_by '상호'). Each list shows how many delinquency records were found and the matched entries.

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Korean corporate name (법인명) or trade name (상호) to look up"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query_name": "Example Corp",
  "corporate_list": {
   "matches": [],
   "match_count": 0,
   "searched_by": "법인명"
  },
  "individual_list": {
   "matches": [],
   "match_count": 0,
   "searched_by": "상호"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pocket-factory-korean-business-delinquency-lookup-313ad0ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.pocketfactory.ai](https://www.zero.xyz/host/api.pocketfactory.ai/llms.txt)
