# Japan FSA Warning List Name Check

> Japan FSA Warning List Name Check is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Checks whether a given name appears on Japan's FSA list of unregistered or warned financial business operators using fuzzy/partial matching.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/fsa/warning_check
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japan-fsa-warning-list-name-check-e55b3956
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_54qWvGBSBSXK8hUnD4CJk

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 japan-fsa-warning-list-name-check-e55b3956
```

Example prompt: Can you check if 'Sakura Capital FX Partners' appears on Japan's FSA warning list of unregistered or warned financial business operators?

## When to prefer this

Use this endpoint when you need to screen a financial entity or business operator name against Japan's FSA warning list specifically — particularly for Japan-market compliance workflows, onboarding checks for Japanese financial firms, or due diligence on entities offering financial services in Japan. Prefer this over the broader Japan MOF/OFAC combined screener when you only need FSA-specific unregistered/warned operator data rather than sanctions list coverage.

## Known failure modes

- Missing 'name' query parameter returns a 400 error
- Name string exceeding 200 characters may be rejected
- FSA source HTML unavailable causes lookup failure or stale data
- No match found returns an empty or negative result (not an error)
- Ambiguous partial matches may return multiple results requiring manual review

## How this service works

Check whether a name appears on Japan FSA's list of unregistered/warned financial business operators. Informational only, not a legal prohibition list. Source: FSA official HTML list, PDL1.0-attributed.

## Output

Returns whether the queried name matches any entry on the Japan FSA's official list of unregistered or warned financial business operators, including matched entity names and relevant warning details. Partial matching is supported for names up to 200 characters. Results are informational only and not a legal prohibition.

## 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": "1-200 chars, partial match"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japan-fsa-warning-list-name-check-e55b3956/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentfeeds.jp](https://www.zero.xyz/host/api.agentfeeds.jp/llms.txt)
