# Losbeto Sanctions Check

> Losbeto Sanctions Check is a paid API for AI agents from markets.losbeto.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns sanctions screening data for a given entity or address via a pay-per-call x402 USDC-monetized endpoint

## Facts

- Endpoint: GET https://markets.losbeto.xyz/sanctions
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-sanctions-check-d24fd130
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DzadWkrYNwy1D9jQROzx0

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 losbeto-sanctions-check-d24fd130
```

Example prompt: Can you check whether this wallet address 0xABC123 is on any sanctions or OFAC watchlists before I send funds to it?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use sanctions screening without a subscription, especially within AI agent workflows on Solana or Base that already use x402 USDC micropayments for other calls. Suited for low-volume, on-demand compliance checks integrated into crypto payment pipelines.

## Known failure modes

- Missing or malformed input identifier returns an error or empty result
- Network timeout or upstream sanctions database unavailability
- Payment of 0.1 USDC via x402 not completed, resulting in 402 response
- Unknown identifier type may yield inconclusive results

## How this service works

Losbeto: 67 endpoints x402 monetizados. Solana + Base. USDC micropayments para AI agents. Preços a partir de $0.003.

## Output

A JSON response indicating whether the queried entity or address is present on sanctions lists, likely including a status flag, matched list names, and any relevant compliance metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string",
       "description": "Entity name to screen against OFAC-SDN"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "description": "Real screening against the official OFAC-SDN list, downloaded daily from treasury.gov. Wallet or name in, match detail and confidence out."
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-sanctions-check-d24fd130/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from markets.losbeto.xyz](https://www.zero.xyz/host/markets.losbeto.xyz/llms.txt)
