# GoCreative Enrich Lite

> GoCreative Enrich Lite is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Lightweight entity enrichment endpoint returning real-world data (finance, company, government, crypto, etc.) for a given string argument via pay-per-call API

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/enrich/lite/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-enrich-lite-d7b12093
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dBwoi9pRHkwZionIkH9MP

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-enrich-lite-d7b12093
```

Example prompt: Use GoCreative's enrich lite endpoint to pull real-world data on Apple Inc — give me whatever official finance, company, or government data you can find about them.

## When to prefer this

Use this endpoint when you need a lightweight, single-call enrichment of a named entity (company, ticker, economic series, crypto asset) from official sources without needing to sign up or manage API keys. Ideal for agents that pay per call in USDC via x402 and want broad coverage across finance, government, and company data domains in one endpoint.

## Known failure modes

- Payment required (402) if USDC payment not attached
- Invalid or unrecognized argument returns empty or error response
- Rate limiting if payment not processed
- Ambiguous entity string may return generic or no data
- Network timeout for slow upstream official data sources

## 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 structured data about the queried entity, drawn from official sources such as FRED, US Census, financial databases, company registries, or crypto markets depending on the input argument type.

## 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-enrich-lite-d7b12093/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)
