# AML/BSA & Sanctions Compliance Digest

> AML/BSA & Sanctions Compliance Digest is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns an LLM-generated brief summarizing the most critical AML, BSA, and sanctions compliance rules and deadlines within a specified time window.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-aml/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aml-bsa-sanctions-compliance-digest-d1e42dc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bi7U0GlA58PGMfHYETAOd

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 aml-bsa-sanctions-compliance-digest-d1e42dc2
```

Example prompt: Give me a quick AML, BSA, and sanctions compliance digest covering everything important from the last 30 days — especially any deadlines I need to know about.

## When to prefer this

Choose this endpoint when you need a human-readable, synthesized narrative of current AML/BSA and sanctions compliance obligations rather than raw regulatory data. Best suited for compliance officers, fintech agents, or risk management workflows that need to quickly surface what actually matters in a recent regulatory window without parsing primary sources. Use the `since` parameter to narrow or widen the lookback window beyond the default 30 days.

## Known failure modes

- No regulatory changes found in window — may return a brief with basedOnChanges: 0 or a minimal summary
- Invalid since parameter format — must be ISO 8601 date-time; malformed values may return a 400 error
- LLM generation failure — generatedBy may fall back to 'template' mode
- Payment not received — x402 payment required error before content is returned
- Very recent or future since values may yield sparse results

## How this service works

LLM-written compliance digest of the AML / BSA & sanctions compliance rules in the window that actually matter (money laundering, bank secrecy, beneficial owner, suspicious activity, customer due diligence) — issuing agency named, deadlines called out.

## Output

Returns a structured object containing: a `brief` field with an LLM-written narrative summary of the most significant AML/BSA and sanctions compliance rules and deadlines in the window; a `generatedBy` field indicating whether the brief was produced by an LLM or a template; and a `basedOnChanges` integer showing how many underlying regulatory changes informed the digest.

## 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",
     "properties": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aml-bsa-sanctions-compliance-digest-d1e42dc2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
