# Prism Search — AI Web Search

> Prism Search — AI Web Search 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).

Performs AI-powered web search for any query, returning ranked results with titles, URLs, and snippets

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/prism/search/:var1
- 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/prism-search-ai-web-search-e646267e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W8gqV40tWZh4habDzGAXR

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 prism-search-ai-web-search-e646267e
```

Example prompt: Search the web for 'best open-source LLM frameworks 2025' and give me the top results with titles, links, and short descriptions.

## When to prefer this

Choose this endpoint when an AI agent needs real-time web search results without requiring a pre-provisioned API key — ideal for grounding, research, lead generation, or any task where live web data is needed at low per-call cost ($0.01 USDC). Prefer over alternatives when using the x402 pay-per-call model on Base and when you need titled, URL-linked, snippet-rich results rather than raw crawl data.

## Known failure modes

- Empty or missing 'input' query parameter returns a 400 error
- Query too long or malformed may result in no results returned
- Payment of $0.01 USDC not processed correctly causes 402 Payment Required
- Service downtime or upstream search provider failure returns 5xx error
- Ambiguous or very niche queries may return few or low-relevance results

## How this service works

Prism Search — AI web search for any query: ranked results with titles, URLs and snippets. Keyless pay-per-call, $0.01. For research, lead-gen and grounding agents.

## Output

A ranked list of web search results, each containing a page title, URL, and text snippet relevant to the query, suitable for grounding, research, or lead generation tasks.

## 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/prism-search-ai-web-search-e646267e/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)
