# LimitGuard Quick Risk Score

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

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

## Facts

- Endpoint: POST https://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-quick-risk-score-91bc73d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1W2qoU8I8idvu5TaktP5w

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-quick-risk-score-91bc73d4 -d '<json body>'
```

Example prompt: Can you run a quick risk score on 'Acme Corp BV' based in the Netherlands — I just need a fast check before we proceed with this vendor.

## When to prefer this

Use this endpoint when you need a fast, lightweight risk signal for a legal entity and country pair without incurring the cost or latency of a full compliance report. Ideal for pre-screening vendors, agents, or counterparties before deeper due diligence. Prefer over full entity check endpoints when speed matters and a directional score is sufficient.

## Known failure modes

- Missing entity_name or country returns a 400 validation error
- Unknown or unsupported country code may yield an error or low-confidence score
- Payment not completed (x402) results in 402 Payment Required
- Entity name too ambiguous or short may return a low-confidence or generic score
- Rate limiting or quota exceeded returns a 429 error

## How this service works

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

## Output

Returns a JSON object with entity_name, country, a numeric risk_score from 0 to 100, and a risk_level label (e.g. 'low', 'medium', 'high') indicating the entity's assessed risk.

## 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_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"
  }
 }
}
```

## 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-quick-risk-score-91bc73d4/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)
