# GoCreative Entity Risk Score

> GoCreative Entity Risk Score 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-09).

Returns a risk/entity score for a given entity identifier (company, person, or organization) using real-world data sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/risk/entity-score/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-entity-risk-score-4f0ed6d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yrZ2nsBbKJMRrBl7VKMV4

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-4f0ed6d7
```

Example prompt: What is the entity risk score for Acme Corp? I need to assess their risk level before we sign a contract with them.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call risk assessment for a specific named entity (company, organization, or person) without requiring API key signup. Prefer this over manual due diligence or subscription-based risk tools when you only need occasional lookups billed at $0.05 USDC per call via x402 on Base.

## Known failure modes

- Entity not found — unknown or misspelled entity name returns empty or error response
- Invalid input parameter — missing or malformed query string returns 400-level error
- Payment required — missing USDC payment via x402 returns 402 status
- Rate limiting or service unavailability returns 5xx error
- Ambiguous entity name matches multiple entities, returning uncertain or averaged score

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

A numeric or categorical risk score for the specified entity, derived from real-world data sources including finance, company, and government data, indicating the risk level associated with that entity.

## 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-4f0ed6d7/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)
