# LimitGuard Compliance Report

> LimitGuard Compliance Report is a paid API for AI agents from limitguard.ai, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns a full compliance assessment report for a named entity, covering sanctions, PEP status, adverse media, and regulatory standing.

## Facts

- Endpoint: GET https://limitguard.ai/v1/compliance/report
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/limitguard-compliance-report-cb932b0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eGGDXbIcu_b4sywkJoBgg

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 limitguard-compliance-report-cb932b0b
```

Example prompt: Can you pull a full compliance report for 'acme-corp'? I need to know their sanctions status, whether they're a politically exposed entity, and their overall regulatory compliance standing before we proceed.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional compliance assessment in a single call — covering sanctions, PEP, adverse media, and regulatory status together. Prefer this over the quick risk score endpoint when thoroughness matters (e.g., onboarding, large transactions, regulatory audits). Choose this over individual checks when you need a single overall_status verdict rather than raw scores.

## Known failure modes

- Entity ID not found — returns 404 or empty result set
- Unknown or unrecognized entity identifier — ambiguous match
- Payment not processed — 402 error if x402 payment header is missing or insufficient
- Rate limiting — 429 if call volume exceeds plan limits
- Timeout — compliance data sources may be slow to respond under load

## How this service works

Full compliance assessment report for an entity. Covers sanctions, PEP, adverse media, and regulatory status.

## Output

A structured compliance report including sanctions_clear (boolean), pep_clear (boolean), overall_status (e.g. 'compliant'), and the entity_id. Covers sanctions screening, PEP classification, adverse media findings, and regulatory status in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "$schema": "https://json-schema.org/draft/2020-12/schema",
   "required": [
    "entity_id"
   ],
   "properties": {
    "entity_id": {
     "type": "string",
     "description": "Entity identifier (path parameter)"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "sandbox": {
   "type": "object",
   "required": [
    "url"
   ],
   "properties": {
    "url": {
     "type": "string"
    },
    "curl": {
     "type": "string"
    },
    "note": {
     "type": "string"
    }
   }
  },
  "recovery": {
   "type": "object",
   "required": [
    "url"
   ],
   "properties": {
    "url": {
     "type": "string"
    },
    "curl": {
     "type": "string"
    }
   }
  },
  "documentation_url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "entity_id": "acme-corp",
  "pep_clear": true,
  "overall_status": "compliant",
  "sanctions_clear": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/limitguard-compliance-report-cb932b0b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from limitguard.ai](https://www.zero.xyz/host/limitguard.ai/llms.txt)
