# GoCreative Browserbase Web Enrichment

> GoCreative Browserbase Web Enrichment 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-13).

Fetches and enriches web content via a Browserbase-powered browser session for a given URL or web endpoint argument

## Facts

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

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-browserbase-web-enrichment-f541d8ed
```

Example prompt: Use GoCreative's Browserbase tool to fetch the fully rendered content of https://example.com/product-page — I need the page as a real browser would see it, including JavaScript-rendered elements.

## When to prefer this

Choose this endpoint when you need JavaScript-rendered web page content (not just raw HTML), or when a target site requires a real browser session to load properly. Prefer over simple HTTP fetch tools when dealing with SPAs, dynamic content, or sites that detect and block basic HTTP clients. Pay-per-call at $0.05 USDC with no API key required.

## Known failure modes

- Invalid or unreachable URL returns an error response
- Timeout if the target page is too slow to load
- Non-GET/HEAD/DELETE HTTP methods rejected by schema validation
- Missing required 'input' query parameter returns 400-level error
- Target site blocks headless browser user agents

## 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 the enriched, browser-rendered content of the requested web page or endpoint — including JavaScript-executed output — as retrieved via a Browserbase headless browser session. Costs $0.05 USDC per call via x402 on Base.

## 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-browserbase-web-enrichment-f541d8ed/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)
