# GoCreative Batch Compliance Screener

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

Runs batch OFAC/sanctions/PEP/KYB compliance screening on one or more entities (wallets, persons, businesses) in a single pay-per-call request

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/verdict/batch-screen/%7Barg%7D
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-batch-compliance-screener-03b28822
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n_p4GE7sDxnuU8eGEuqcQ

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-batch-compliance-screener-03b28822
```

Example prompt: Can you run a batch sanctions and OFAC compliance screen on these three entities at once: the wallet 0xABC123, the company Acme Trading Ltd, and the individual Viktor Petrov — I need to know if any of them are flagged as sanctioned, PEP, or KYB risks?

## When to prefer this

Use this endpoint when you need to screen multiple entities (wallets, persons, companies) simultaneously against OFAC, sanctions, PEP, and KYB databases in a single call — especially in agentic or automated workflows where keyless, pay-per-call access (no signup) is preferred over subscription-based compliance APIs.

## Known failure modes

- Invalid or malformed batch input string returns a 400 error
- Payment not received (402) if USDC payment via x402 is not attached
- Empty or null input parameter causes request failure
- Upstream sanctions database timeout may return a 503
- Unrecognized entity format may yield inconclusive verdict

## 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

Returns a compliance verdict for each screened entity in the batch, indicating OFAC matches, sanctions list hits, PEP status, and KYB risk flags — enabling the agent to identify which entities require further review or should be blocked.

## 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-batch-compliance-screener-03b28822/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)
