# RiskPulse Sanctions Exposure Analysis

> RiskPulse Sanctions Exposure Analysis is a paid API for AI agents from riskpulse-five.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns OFAC, EU, and UN sanctions exposure data with official screening resources for compliance and risk analysis

## Facts

- Endpoint: GET https://riskpulse-five.vercel.app/api/risk/sanctions
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riskpulse-sanctions-exposure-analysis-9e415721
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TW1p-2nxw3OwjAF5BSj4V

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 riskpulse-sanctions-exposure-analysis-9e415721
```

Example prompt: Can you run a sanctions exposure check on Gazprombank — specifically looking across OFAC, EU, and UN lists — and tell me the current compliance status and where to find the official screening resources?

## When to prefer this

Use this endpoint when you need consolidated multi-jurisdiction sanctions screening (OFAC, EU, and UN simultaneously) for compliance workflows, vendor onboarding, AML due diligence, or counterparty risk assessment. Prefer this over manual lookups when you need structured, programmatic output with official source references.

## Known failure modes

- Entity name not recognized or too ambiguous — returns uncertain match
- Network timeout or upstream data source unavailability
- Missing required query parameter — returns 400 bad request
- Payment not processed — returns 402 Payment Required
- Rate limiting or quota exceeded — returns 429

## How this service works

Sanctions exposure check, OFAC SDN screening, compliance risk analysis for any entity, person, or country. Returns OFAC, EU, and UN sanctions exposure with official screening resources.

## Output

Returns the entity's sanctions exposure status across OFAC, EU, and UN databases, including risk flags, compliance indicators, and links to official screening resources for further verification.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "entity"
     ],
     "properties": {
      "lang": {
       "type": "string",
       "description": "Response language (default en)"
      },
      "entity": {
       "type": "string",
       "description": "Entity name"
      },
      "entity_type": {
       "type": "string",
       "description": "Entity type (person, company, vessel)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riskpulse-sanctions-exposure-analysis-9e415721/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from riskpulse-five.vercel.app](https://www.zero.xyz/host/riskpulse-five.vercel.app/llms.txt)
