# UN Security Council Consolidated List Entity Lookup

> UN Security Council Consolidated List Entity Lookup is a paid API for AI agents from data.japanagent.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches full entity details from the UN Security Council consolidated sanctions list by DATAID, including primary name, aliases, entity type, and list section.

## Facts

- Endpoint: GET https://data.japanagent.dev/sanctions/entity/un/:uid
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/un-security-council-consolidated-list-entity-lookup-b7f4be2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__dhSwZZkcB5Gz0mp35rTA

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 un-security-council-consolidated-list-entity-lookup-b7f4be2b
```

Example prompt: Pull up the full UN Security Council consolidated list entry for DATAID QDe.002 — I need the primary name, all aliases, entity type, and which list section it belongs to.

## When to prefer this

Use this endpoint when you have a specific UN Security Council consolidated list DATAID and need the full structured entity profile including all aliases and classification. Prefer over search endpoints when the exact DATAID is already known. Complements the OFAC SDN lookup sibling endpoint for multi-regime sanctions checks.

## Known failure modes

- Invalid or unknown DATAID returns a 404 or empty result
- Malformed uid path parameter causes a 400 error
- UN list data may have a refresh lag meaning very recent additions are not yet available
- Payment failure (402) if USDC balance is insufficient

## How this service works

Fetch full UN Security Council consolidated list entity details by DATAID: primary name, all aliases, entity type, list section.

## Output

Returns the full entity record from the UN Security Council consolidated sanctions list for the given DATAID, including the primary name, all known aliases, entity type (individual, entity, etc.), and the specific list section the entry belongs to.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "uid"
     ],
     "properties": {
      "uid": {
       "type": "string",
       "description": "UN consolidated list DATAID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/un-security-council-consolidated-list-entity-lookup-b7f4be2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.japanagent.dev](https://www.zero.xyz/host/data.japanagent.dev/llms.txt)
