# Vibes-Coded Search & Scrape API

> Vibes-Coded Search & Scrape API is a paid API for AI agents from vibes-coded.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Performs a web search and scrapes page content, returning results as structured JSON with titles, URLs, snippets, and markdown-rendered page content.

## Facts

- Endpoint: POST https://vibes-coded.com/api/v1/outcomes/search-scrape
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibes-coded-search-scrape-api-6dfe26ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9AM6iDty0DQtZaxvjpF14

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 vibes-coded-search-scrape-api-6dfe26ce -d '<json body>'
```

Example prompt: Search the web for 'USDC payment protocols for AI agents' and return the full scraped content and snippets from the top results.

## When to prefer this

Choose this endpoint when you need both search results AND full scraped page content in a single call, returned as structured JSON with markdown rendering. It is particularly useful for AI agents that need to process web content programmatically and are comfortable with pay-per-call USDC micropayments via the x402 protocol. Prefer alternatives if you need real-time indexing, authenticated paywalled content, or volume scraping at scale.

## Known failure modes

- HTTP 402 returned if USDC payment not attached — agent must include valid x402 payment header
- Empty results array if query matches no indexed pages
- Partial markdown content if target page blocks scraping or is JavaScript-rendered
- Timeout or network error if scraped URLs are slow or unreachable
- ok: false response if query is malformed or missing

## How this service works

Pay-per-call JSON for AI agents: skill search, listing optimization, install plans, productization, and artifact risk scoring. HTTP 402 → USDC. Full skill marketplace on-site.

## Output

Returns a JSON object with ok status, the original query string, a list of search results (each with URL, title, and snippet), a list of scraped pages (each with URL, title, and full markdown content), the resource name, result count, and number of pages scraped.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "pages": [
   {
    "url": "https://x402.org",
    "title": "x402",
    "markdown": "# x402\n\nPay-per-call via HTTP 402 + USDC..."
   }
  ],
  "query": "x402 USDC",
  "results": [
   {
    "url": "https://x402.org",
    "title": "x402",
    "snippet": "HTTP 402 payments"
   }
  ],
  "resource": "search-scrape",
  "result_count": 3,
  "pages_scraped": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibes-coded-search-scrape-api-6dfe26ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibes-coded.com](https://www.zero.xyz/host/vibes-coded.com/llms.txt)
