# GoCreative Adverse Media Screening

> GoCreative Adverse Media Screening 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-15).

Screens a person or company against global news sources for financial crime, sanctions, bribery, legal, and reputational risk signals, returning categorized hits with sourced headlines and a risk level.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/verdict/adverse-media/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-adverse-media-screening-44b4702b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nO8RDqUrTHQYl5478Lshm

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-adverse-media-screening-44b4702b
```

Example prompt: Run an adverse media screen on 'Nikolai Petrov' — I need to know if there are any negative news hits related to financial crime, bribery, sanctions, or legal issues, and what the overall risk level is.

## When to prefer this

Choose this endpoint when you need keyless, pay-per-call adverse media screening without a sales process or subscription — ideal for AI agents running AML/KYC workflows that need to supplement sanctions and PEP checks with negative news signals. At $0.05 per call it is cost-effective for sporadic or high-volume automated checks, and it fits natively into x402 agentic payment flows on Base/USDC without API key management.

## Known failure modes

- Entity not found or too generic a name returns empty hits with low risk despite potential matches
- Homonym ambiguity: common names may return irrelevant hits for unrelated individuals
- News coverage gaps for entities in low-coverage regions or languages
- Payment failure via x402 USDC returns 402 Payment Required
- Malformed or missing input query parameter returns 400 Bad Request
- Rate limiting or service unavailability returns 429 or 503

## How this service works

Adverse media / negative-news screening—screens a person or company against global news for financial-crime, sanctions, bribery, legal and reputational signals, returning categorized hits with sourced headlines + a risk level. The third leg of an AML profile alongside sanctions/PEP screening. Keyless, pay-per-call USDC, $0.05—beats ComplyAdvantage/dilisense's sales-gated adverse-media add-on.

## Output

Returns categorized adverse media hits with sourced headlines, publication metadata, signal categories (e.g. financial crime, sanctions, bribery, legal, reputational), and an overall risk level (e.g. low, medium, high) for the screened 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-adverse-media-screening-44b4702b/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)
