# LimitGuard Risk Score - Entity Name + Country

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

## Facts

- Endpoint: POST https://api.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-11da94c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0ug0FiyZm80BsqPXlV8rz

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-11da94c7 -d '<json body>'
```

Example prompt: Can you get me a quick risk score for Acme Trading Ltd based in Germany — just the lightweight check, no full scan needed?

## When to prefer this

Use this endpoint when you need a fast, lightweight risk signal for an entity without triggering a full compliance scan. Ideal for pre-screening counterparties, agents, or vendors before committing to deeper due diligence. Choose this over the full entity check when speed and cost efficiency matter more than comprehensive data coverage.

## Known failure modes

- Missing entity_name or country returns a validation error
- Invalid or unsupported ISO country code returns a bad request error
- Unknown or very obscure entity names may return a default or inconclusive score
- Payment failure (insufficient USDC balance) results in a 402 response
- Rate limiting may occur under high call volume

## How this service works

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

## Output

Returns a JSON object with a numeric risk_score (0-100) and a risk_level string (e.g. 'low', 'medium', 'high') indicating the assessed risk for the given entity and country pair.

## 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 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"
  },
  "cachedTierAvailable": {
   "type": "boolean"
  }
 }
}
```

## 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-11da94c7/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)
