# GoCreative Leads Search API

> GoCreative Leads Search API 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-12).

Search for B2B leads by keyword or query argument, returning matching lead records from GoCreative's pay-per-call data platform

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/leads/search/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-leads-search-api-64b982af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_awypVnAE-Pd-dG2lBRQ3v

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-leads-search-api-64b982af
```

Example prompt: Search GoCreative's leads database for 'fintech startups in New York' and give me the matching company and contact records so I can start prospecting.

## When to prefer this

Use this endpoint when an AI agent needs to programmatically search for B2B leads by keyword or search term without setting up an API key or subscription — ideal for pay-per-call agentic workflows using USDC micropayments via x402 on Base or Solana.

## Known failure modes

- Empty or missing 'input' query parameter returns a 400 error
- Invalid path parameter format causes routing failure
- Payment not sent or insufficient USDC balance triggers 402 Payment Required
- No leads found for query returns empty result set
- Rate limiting or network errors return 5xx responses

## 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 list of B2B lead records matching the search query, including company names, contact details, and related business information retrieved from GoCreative's data platform.

## 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-leads-search-api-64b982af/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)
