# GoCreative Compliance Delta Feed

> GoCreative Compliance Delta Feed is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns compliance change events (sanctions, PEP, OFAC, KYB, etc.) for a given subject since the last check, enabling continuous compliance monitoring for AI agents

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/feed/compliance-delta/%7Barg%7D
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-compliance-delta-feed-3c628895
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DtD5r8BG0MrZWFrzyXA2Y

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-compliance-delta-feed-3c628895
```

Example prompt: Check if there have been any new sanctions, OFAC, or PEP compliance changes for the entity 'Acme Trading Ltd' since my last poll — I need the delta so I can alert our risk team to anything new.

## When to prefer this

Use this endpoint when you need incremental compliance updates for an entity you are continuously monitoring — rather than a full re-screen. It is ideal for polling loops where you only want to know what has changed since the last check, reducing cost and latency compared to full re-screening endpoints. Prefer this over a full sanctions/OFAC lookup when you already have a baseline and only need deltas.

## Known failure modes

- Invalid or unrecognized entity identifier returns empty delta or 404
- Entity not currently monitored may return no delta data
- Network timeout or upstream data provider outage results in 5xx error
- Malformed path parameter returns 400 bad request
- Insufficient USDC payment (x402) causes payment-required rejection

## 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 list of compliance change events (deltas) for the specified entity since the previous check — including new OFAC wallet flags, sanctions list additions or removals, PEP status changes, and KYB regulatory updates — enabling incremental monitoring without full re-screening.

## 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-compliance-delta-feed-3c628895/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)
