# GoCreative Entity Risk Score (Verdict API)

> GoCreative Entity Risk Score (Verdict API) is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a composite risk score for an entity combining adverse media, OFAC sanctions, CFPB complaints, and GLEIF LEI data with cited sources for KYC/KYB/AML pre-deal checks.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/verdict/risk/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-entity-risk-score-verdict-api-3ceb50ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RumATQHNs3S7lr8zv4oeW

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 gocreative-entity-risk-score-verdict-api-3ceb50ae
```

Example prompt: Before we send payment to Acme Global Trading Ltd, can you pull a risk verdict on them — I need their OFAC status, any adverse media hits, CFPB complaints, and an overall risk score with sources?

## When to prefer this

Use this endpoint when you need a single aggregated risk verdict for an entity before initiating a payment, signing a contract, or onboarding a vendor — especially when you need multi-source coverage (sanctions + adverse media + regulatory complaints + corporate identity) with cited evidence rather than a single-source check.

## Known failure modes

- Entity name too ambiguous — multiple matches or no match found
- OFAC or GLEIF data temporarily unavailable — partial score returned
- Input string is empty or malformed — 400 bad request
- Rate limit exceeded — 429 response
- Entity not found in any data source — low-confidence score returned

## How this service works

Verdict Risk — entity risk score for a company or person from adverse signals across available sources. Keyless, $0.05.

## Output

A composite entity risk score with breakdown across OFAC sanctions status, adverse media mentions, CFPB complaint data, and GLEIF LEI corporate identity data, each with cited sources so the agent can audit the verdict.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-entity-risk-score-verdict-api-3ceb50ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
