# SYNTHORA Identity Risk

> SYNTHORA Identity Risk is a paid API for AI agents from identity-risk.hergertsynthora.com, paid per call via x402, $0.32/call, status unknown (last checked 2026-09-14).

Returns a brand-impersonation verdict (AUTHENTIC, DOUBTFUL, or ACTIVE_IMPERSONATION) for a decentralised social identity by correlating signals across independent sources.

## Facts

- Endpoint: POST https://identity-risk.hergertsynthora.com/service
- Price: $0.32/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-identity-risk-3aa7015c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9CpVWQkjgfnCkU7fUqh3W

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 synthora-identity-risk-3aa7015c -d '<json body>'
```

Example prompt: Can you run an identity-risk check on the handle '@coinbase_official_defi' and tell me whether it's authentic, doubtful, or actively impersonating a brand?

## When to prefer this

Choose this endpoint when you need a structured, machine-readable impersonation verdict specifically for decentralised social identities (Farcaster, Lens, DID-based handles) that is corroborated across multiple independent data sources, rather than a simple domain/email lookup or a centralised platform's own verification badge. Particularly useful for trust-and-safety pipelines, pre-partnership screening, or brand-monitoring agents operating in Web3 contexts.

## Known failure modes

- Missing or empty input string returns a validation error
- Unrecognised or completely novel identity handle may return DOUBTFUL due to insufficient corroboration data
- Network timeout or upstream source unavailability may cause a 5xx error
- Malformed input (non-string value) causes a schema validation rejection
- Insufficient USDC balance or x402 payment failure blocks the request before processing

## How this service works

SYNTHORA identity-risk: brand-impersonation verdict (AUTHENTIC / DOUBTFUL / ACTIVE_IMPERSONATION) over decentralised social identities, correlated across independent sources.

## Output

Returns a JSON object with a numeric risk score, a boolean delivery/entrega flag, and a three-value verdict in English: AUTHENTIC (the identity appears legitimate), DOUBTFUL (signals are ambiguous), or ACTIVE_IMPERSONATION (the identity is corroborated as impersonating a brand).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "string",
   "description": "SYNTHORA identity-risk: brand-impersonation verdict (AUTHENTIC / DOUBTFUL / ACTIVE_IMPERSONATION) over decentralised social identities, correlated across independent sources."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "identity_risk",
  "result": {},
  "receipt": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-identity-risk-3aa7015c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from identity-risk.hergertsynthora.com](https://www.zero.xyz/host/identity-risk.hergertsynthora.com/llms.txt)
