# Strale AML Risk Score

> Strale AML Risk Score is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-15).

Returns an AML (Anti-Money Laundering) risk score for a named person or company in a given country, incorporating PEP status, sanctions list matches, and adverse media signals.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/aml-risk-score
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-aml-risk-score-089cc16d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_amZXCA4LBVKdZ7tNr7bJC

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 strale-aml-risk-score-089cc16d
```

Example prompt: Can you run an AML risk check on a person named Aleksei Petrov from Russia — flag whether he's a politically exposed person, on any sanctions lists, or has adverse media hits?

## When to prefer this

Choose this endpoint when you need a structured, auditable AML/KYC risk signal for a named person or company in a specific country, especially when compliance traceability is required. It is particularly useful for financial onboarding, due diligence pipelines, or regulatory workflows where a cryptographic audit trail per call is mandatory. Prefer this over generic web search or unstructured news lookup when you need a scored, machine-readable compliance output with provenance. Best suited for single-entity screening rather than batch background check workflows.

## Known failure modes

- Missing required entity_name or country_code results in a 400 validation error
- Invalid ISO 2-letter country code returns an error or no results
- Ambiguous or common names may produce low-confidence matches
- Entity not found in any monitored database returns a null or zero-risk score that may be inconclusive
- Rate limits or payment failures via x402 protocol may block the request
- Sparse data for certain countries may result in incomplete risk signals

## How this service works

Calculate a composite Anti-Money Laundering (AML) risk score for a person or company. Aggregates sanctions screening, PEP status, and jurisdiction risk into a single 0-100 risk score with risk level classification.

## Output

Returns a structured AML risk score for the queried entity, incorporating PEP (Politically Exposed Person) status, sanctions list membership, and adverse media signals. Each response includes a cryptographic audit record with chain hashing for compliance and traceability purposes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "country_code",
  "entity_name"
 ],
 "properties": {
  "pep_match": {
   "type": "boolean",
   "description": "Whether entity is a Politically Exposed Person"
  },
  "entity_name": {
   "type": "string",
   "description": "Name of person or company"
  },
  "entity_type": {
   "type": "string",
   "description": "Type of entity: person or company (default: person)"
  },
  "country_code": {
   "type": "string",
   "description": "ISO 2-letter country code"
  },
  "sanctions_match": {
   "type": "boolean",
   "description": "Whether entity appears on sanctions lists"
  },
  "adverse_media_match": {
   "type": "boolean",
   "description": "Whether adverse media was found"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "risk_level": {
  "type": "string"
 },
 "risk_score": {
  "type": "integer"
 },
 "entity_name": {
  "type": "string"
 },
 "risk_factors": {
  "type": "array"
 },
 "recommendation": {
  "type": "string"
 },
 "jurisdiction_risk": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-aml-risk-score-089cc16d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
