# agentfeeds.jp Japan MOF Russia/Ukraine Sanctions Entity Search

> agentfeeds.jp Japan MOF Russia/Ukraine Sanctions Entity Search is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Searches Japan Ministry of Finance asset-freeze designees related to Russia/Ukraine (Crimea) by name substring, returning matching sanctioned entities from the 2014 and 2022 measures.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/sanctions/jp/russia_ukraine
- Price: $0.002/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-japan-mof-russia-ukraine-sanctions-entity-search-a9e26c7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q0bAYVKVFp8nWZHCjJFlf

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-japan-mof-russia-ukraine-sanctions-entity-search-a9e26c7b
```

Example prompt: Check Japan's Ministry of Finance Russia/Ukraine sanctions list for any entries matching 'Sberbank' — I need to know if it appears in the 2014 or 2022 asset-freeze measures.

## When to prefer this

Use this endpoint when you specifically need to screen against Japan MOF's Russia/Ukraine (Crimea) asset-freeze designee subset — rather than the broader Japan sanctions entity view — for faster, pre-filtered results scoped to the 2014 and 2022 Russia/Ukraine measures. Prefer this over the general sanctions.entity_view endpoint when your compliance workflow is explicitly focused on Russia/Ukraine-related Japan sanctions, reducing noise from unrelated designation lists.

## Known failure modes

- Missing required 'name' query parameter returns validation error
- Name string outside 1-200 character limit rejected
- No matches found returns empty result set (not an error)
- Payment failure via x402 protocol blocks the request
- Upstream MOF list data temporarily unavailable

## How this service works

Same substring name search as sanctions.entity_view, pre-filtered to the Russia/Ukraine(Crimea)-related subset of Japan MOF's asset-freeze designee list (three internal reference blocks: one from the 2014 measures, two from the 2022 measures). Same underlying data and matching method as sanctions.entity_view -- no new list, no new matching logic. Factual screening data; not legal or compliance advice.

## Output

Returns matching sanctioned entity records from Japan MOF's Russia/Ukraine (Crimea) asset-freeze designee list — filtered to the three internal reference blocks (one from 2014 measures, two from 2022 measures) — including entity names and designation details for all partial-name matches on the query string.

## 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/agentfeeds-jp-japan-mof-russia-ukraine-sanctions-entity-search-a9e26c7b/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)
