# GoCreative URL Unfurl Lookup

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

Fetches and expands a URL to retrieve its metadata, title, description, and other open-graph or preview information

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/url_unfurl
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-url-unfurl-lookup-ff8acaf9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fj9e4bOdinRRy-Cz2yAwz

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-url-unfurl-lookup-ff8acaf9
```

Example prompt: Can you unfurl this URL for me and tell me what's on the page — the title, description, and any preview info? https://techcrunch.com/2024/05/01/openai-raises-new-funding-round

## When to prefer this

Use this endpoint when an agent needs to quickly extract link-preview metadata (title, description, OG tags) from a single URL without managing API keys or subscriptions. Ideal for enriching messages, summarizing links, or validating what a URL leads to. Prefer this over general web scrapers when you only need lightweight metadata rather than full page content.

## Known failure modes

- URL is unreachable or returns a non-200 status — endpoint may return an error or empty metadata
- URL points to a PDF or binary file with no HTML metadata — minimal or no fields returned
- URL is a redirect loop — may fail to resolve
- Rate limiting or payment failure (x402) — call rejected before execution
- Malformed URL input — validation error returned
- Page blocks bots/scrapers — metadata may be incomplete or absent

## 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 an object containing metadata extracted from the given URL, likely including page title, description, open graph tags, canonical URL, image previews, and other structured link-preview data extracted from the page's HTML.

## Example request

```json
{
 "url": "https://www.wikipedia.org"
}
```

## 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-url-unfurl-lookup-ff8acaf9/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)
