# LimitGuard Risk Score — Entity Name + Country

> LimitGuard Risk Score — Entity Name + Country 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 quick risk score (0-100) and risk level for a named entity and country pair without a full data source scan.

## Facts

- Endpoint: POST https://limitguard.ai/v1/mcp/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-entity-name-country-8d5e60a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CT6OAX211IaGUOlD97PwC

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-entity-name-country-8d5e60a0 -d '<json body>'
```

Example prompt: Can you run a quick risk score on 'Acme Trading GmbH' based in Germany (DE) — I just need a fast risk level before we move forward with them.

## When to prefer this

Choose this endpoint when you need a fast, low-cost preliminary risk signal for an entity before deciding whether to invest in a full compliance report. Ideal for pre-screening pipelines, agent-to-agent trust checks, or high-volume triage where speed matters more than exhaustive sourcing.

## Known failure modes

- Missing entity_name or country returns 400 validation error
- Invalid ISO country code returns 400 or unresolved result
- Unknown or very obscure entity may return a default or uncertain score
- Payment failure (x402) blocks the call
- Rate limiting or quota exhaustion returns 429

## How this service works

MCP tool: quick risk score for entity name + country pair.

## Output

Returns a numeric risk score from 0 to 100 and a categorical risk level (e.g. 'low', 'medium', 'high') for the specified entity name and country pair, without performing a full multi-source compliance scan.

## 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 country code"
    },
    "entity_name": {
     "type": "string",
     "description": "Full legal 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": {
  "risk_level": "low",
  "risk_score": 23
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/limitguard-risk-score-entity-name-country-8d5e60a0/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)
