# GoCreative Entity Compliance Monitor

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

Polls a named company or person for sanctions status, PEP listing, and risk signals, returning a change-signature for detecting status flips in recurring compliance checks.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/monitor/entity/:var1
- Price: $0.45/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-compliance-monitor-b451243f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DG19LeLCQLVgnHDv2mps_

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-compliance-monitor-b451243f
```

Example prompt: Can you poll the compliance status of 'Acme Trading Ltd' right now and flag any sanctions hits, PEP listings, or risk signal changes since the last check?

## When to prefer this

Use this endpoint when you need keyless, pay-per-call sanctions and PEP screening for recurring monitoring of vendors, counterparties, or individuals — especially in agentic workflows where no API key management is desired and micro-payment per poll ($0.04 USDC) is acceptable. Prefer this over batch KYC providers when you need lightweight polling with a change-signature for diff-based alerting.

## Known failure modes

- Entity name is ambiguous or unresolvable — returns low-confidence or empty result
- Rate limiting or payment failure via x402 — returns 402 Payment Required
- Invalid or missing input query parameter — returns 400 Bad Request
- Entity not found in underlying compliance databases — returns empty match set
- Upstream sanctions list temporarily unavailable — may return stale or partial data

## How this service works

Entity Watch — sanctions/PEP + risk status for a company or person PLUS a stable change-signature, built for monitoring agents. Poll on your schedule and alert when the signature changes or the entity flips to flagged. Continuous vendor/counterparty compliance monitoring. Keyless, $0.04/poll.

## Output

Returns the current sanctions status, PEP screening result, risk signals, and a change-signature hash for the entity — allowing the caller to detect any status flips or risk escalations compared to prior polls.

## 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-compliance-monitor-b451243f/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)
