# LimitGuard Risk Score

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

Returns a quick 0-100 risk score and risk level for a legal entity name and country without a full data source scan.

## Facts

- Endpoint: POST https://api.limitguard.ai/v1/risk/score
- Price: $0.65/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/limitguard-risk-score-38e29a42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7p6PtpoXICW-j7zwOr_Ay

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-risk-score-38e29a42 -d '<json body>'
```

Example prompt: What's the risk score for Acme Corp BV based in the Netherlands? I need a quick check before we proceed with the deal.

## When to prefer this

Use this endpoint when you need a fast, lightweight risk signal on a legal entity before committing to a full KYB or compliance report. Ideal for pre-screening counterparties, vendors, or transaction partners when speed matters and a full data scan is not yet warranted. Choose this over the full compliance report endpoint when cost and latency are priorities and a rough risk tier is sufficient.

## Known failure modes

- Missing entity_name or country field returns validation error
- Invalid ISO 3166-1 alpha-2 country code returns error
- Unknown or very obscure entity may return low-confidence or default score
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting if too many requests are sent in a short window

## How this service works

Quick risk score (0-100) for entity name + country. Lightweight check without full data source scan.

## Output

A JSON object containing the entity name, country code, a numeric risk score from 0 to 100, and a risk level label (e.g. 'low', 'medium', 'high') indicating how risky the entity is assessed to be.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "note": {
   "type": "string"
  },
  "input": {
   "type": "object",
   "$schema": "https://json-schema.org/draft/2020-12/schema",
   "required": [
    "entity_name",
    "country"
   ],
   "properties": {
    "country": {
     "type": "string",
     "description": "ISO 3166-1 alpha-2 country code"
    },
    "entity_name": {
     "type": "string",
     "description": "Legal entity name"
    }
   }
  },
  "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"
  },
  "cachedTierAvailable": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "country": "NL",
  "risk_level": "low",
  "risk_score": 23,
  "entity_name": "Acme Corp BV"
 }
}
```

## More

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