# Japan FSA Crypto-Asset Exchange License Checker

> Japan FSA Crypto-Asset Exchange License Checker 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 matches a Japan FSA-registered crypto-asset exchange business using fuzzy name matching against the official FSA license list.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/fsa/license_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-crypto-asset-exchange-license-checker-c48de63a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VQd50DpNa8MQxE3yor2hm

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-crypto-asset-exchange-license-checker-c48de63a
```

Example prompt: Can you check whether 'SBI VC Trade' is a registered crypto-asset exchange business in Japan according to the FSA license list?

## When to prefer this

Use this endpoint when you need to verify whether a specific crypto-asset exchange or business is officially licensed by Japan's FSA. Prefer this over generic web search when you need a structured, authoritative result from the FSA's own license list. Best suited for compliance screening, due diligence, or user-facing verification of Japanese crypto businesses.

## Known failure modes

- Name not found in FSA list — legitimate unlicensed or misspelled entity
- Ambiguous fuzzy match returning multiple possible results
- FSA list may not be real-time; very recently added or removed licenses may not be reflected
- Query string too long (>200 chars) causes validation error
- Empty name parameter causes bad request error

## How this service works

Check whether a name is a Japan-registered crypto-asset exchange business (FSA license list). Fuzzy name match. Source: FSA official Excel list, PDL1.0-attributed. Factual; not legal or compliance advice.

## Output

Returns whether the queried name matches a Japan FSA-registered crypto-asset exchange business, including the matched entity name and registration status based on fuzzy name matching against the official FSA Excel list.

## 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-crypto-asset-exchange-license-checker-c48de63a/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)
