# agentfeeds.jp Multi-Jurisdiction Crypto Sanctions Cross-Check

> agentfeeds.jp Multi-Jurisdiction Crypto Sanctions Cross-Check is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Screens a cryptocurrency address against multiple sanctions lists (JP MOF, OFAC, UK OFSI name-only) and returns per-jurisdiction status with a transparent audit trail of what was and was not screened.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/sanctions/cross_check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfeeds-jp-multi-jurisdiction-crypto-sanctions-cross-check-fcfe864d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yhgoXSlCj6rTajkckHlZO

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 agentfeeds-jp-multi-jurisdiction-crypto-sanctions-cross-check-fcfe864d
```

Example prompt: Run a multi-jurisdiction sanctions cross-check on the crypto address 0x1234abcd5678ef90... — I need to know its status under JP MOF, OFAC, and UK OFSI, and exactly which jurisdictions were screened.

## When to prefer this

Use this endpoint when you need a single call that cross-checks a crypto address against multiple sanctions regimes simultaneously (JP MOF and OFAC by address, UK OFSI by name) and need an explicit, auditable disclosure of exactly what was screened. Prefer this over individual jurisdiction endpoints when multi-jurisdiction coverage and transparency of screening scope are both required. For UK OFSI address-level screening, use the sibling sanctions.uk.check endpoint instead.

## Known failure modes

- Missing required 'address' query parameter returns a 400 error
- Address string outside 20-100 alphanumeric character range rejected with validation error
- Payment not provided or insufficient USDC triggers x402 payment-required response
- Upstream sanctions data source unavailable may return partial or degraded results
- Network timeout for slow downstream regulatory data feeds

## How this service works

Multi-jurisdiction sanctions screening with an explicit audit trail: per-jurisdiction status (JP MOF and OFAC currently available; UK/EU flagged not_yet_available pending license confirmation; UN permanently excluded -- redistribution requires individual UN permission). Staged-release design so the response always discloses exactly what was screened. Factual screening data; not legal advice.

## Output

A JSON object with per-jurisdiction sanctions status for the queried address: JP MOF screened by address, OFAC screened by address, UK OFSI flagged as name_only (no address field in UK list), EU marked not_yet_available (pending license), UN permanently excluded (redistribution requires individual UN permission). Includes a transparent audit trail disclosing exactly which jurisdictions were and were not screened and why.

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "20-100 alphanumeric chars"
      }
     }
    }
   },
   "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/agentfeeds-jp-multi-jurisdiction-crypto-sanctions-cross-check-fcfe864d/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)
