# GoCreative Compliance Screening Report API

> GoCreative Compliance Screening Report API 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-09).

Returns a consolidated compliance and sanctions screening verdict report for a given entity (person, company, or wallet address), covering OFAC, sanctions, PEP, and KYB checks.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/verdict/screening-report/%7Barg%7D
- Price: $0.45/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-compliance-screening-report-api-5ff6eab8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i5rKo89W7wWj_x3NZMthF

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-screening-report-api-5ff6eab8
```

Example prompt: Run a compliance screening report on 'Acme Global Ventures LLC' — I need to know if they show up on any OFAC sanctions lists, are flagged as a politically exposed entity, or fail KYB checks before we onboard them.

## When to prefer this

Use this endpoint when you need a single consolidated compliance screening verdict covering OFAC, sanctions, PEP, and KYB in one call, especially in a keyless pay-per-call context without needing API keys or subscriptions. Prefer this over manual checks or multi-vendor solutions when building AI agent workflows requiring regulatory due diligence.

## Known failure modes

- Missing or empty input query string returns 400 Bad Request
- Entity not found in databases returns empty match or clean verdict
- Payment not completed via x402 returns 402 Payment Required
- Malformed path parameter returns 422 Unprocessable Entity
- Service timeout on large entity lookups returns 504 Gateway Timeout

## 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 structured screening verdict report indicating whether the queried entity (person, company, or wallet) matches OFAC watchlists, global sanctions databases, PEP registries, or fails KYB checks, along with a risk verdict and supporting detail.

## 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-screening-report-api-5ff6eab8/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)
