# Prism Search — AI Web Search

> Prism Search — AI Web Search is a paid API for AI agents from enrich.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14, last successful call 2026-07-09).

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

## Facts

- Endpoint: GET https://enrich.gocreativeai.com/v1/prism/search/:var1
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-09
- Success rate: 100% of calls made through Zero
- Activations on Zero: 4
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prism-search-ai-web-search-c7d8cea5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PfGDRDjGbflYSbDX0pfvB

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-c7d8cea5
```

Example prompt: Search the web for 'best open-source LLM frameworks 2024' and give me the top ranked results with titles, URLs, and snippets.

## When to prefer this

Choose this endpoint when you need live, ranked web search results at $0.01 per call — cheaper than comparable search APIs ($0.015). Ideal for AI agent grounding, research pipelines, and lead generation where fresh web results are required and cost efficiency matters. Prefer over traditional search APIs when keyless pay-per-call billing (x402/USDC) is convenient.

## Known failure modes

- Missing or empty query string returns an error
- Query too vague or too long may return poor-quality results
- Payment failure (insufficient USDC) blocks the call
- Rate limiting or quota exceeded returns 429
- Network or upstream search index unavailability returns 5xx

## 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 a short snippet of relevant text from the page, suitable for research, grounding, or lead generation workflows.

## 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-c7d8cea5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from enrich.gocreativeai.com](https://www.zero.xyz/host/enrich.gocreativeai.com/llms.txt)
