# GoCreative Email Enrichment API

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

Enriches an email address with associated person and company data using pay-per-call pricing via USDC on Base.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/enrich/email/%7Barg%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-email-enrichment-api-8d39fd44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UD6HuwKjDtgAcuDs5QVRp

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-email-enrichment-api-8d39fd44
```

Example prompt: Can you enrich the email address john.smith@acmecorp.com and tell me what person and company information GoCreative has on file for it?

## When to prefer this

Choose this endpoint when you need to enrich a single email address with person and company data on a pay-per-call basis without requiring API key signup. Ideal for AI agents using x402/USDC micropayments on Base. Prefer over alternatives when you want no subscription commitment, access to 170+ enrichment tools from official sources, and native MCP support.

## Known failure modes

- Email not found in database — returns empty or null enrichment record
- Invalid email format — returns 400 bad request or validation error
- Payment failure — x402 payment not accepted, returns 402 Payment Required
- Rate limiting or quota exceeded — returns 429 or similar error
- Upstream data source unavailable — returns 503 or partial data

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns enriched data associated with the provided email address, potentially including the person's name, job title, company name, company details, and other available contact or professional profile attributes sourced from GoCreative's B2B data index.

## 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-email-enrichment-api-8d39fd44/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)
