# organiccryptoyyc.com Web Search API

> organiccryptoyyc.com Web Search API is a paid API for AI agents from organiccryptoyyc.com:8443, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Performs a web search query via SearXNG and returns a list of ranked results

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/search/web
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/organiccryptoyyc-com-web-search-api-6708cf6c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y961cd_BtflSEGGelUH4D

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 organiccryptoyyc-com-web-search-api-6708cf6c
```

Example prompt: Search the web for 'Pocket Network Shannon tokenomics 2024' and give me the top results.

## When to prefer this

Prefer this endpoint when you need a pay-per-call, privacy-respecting web search that doesn't require a Google or Bing API key, especially within a crypto-native agentic workflow that already settles payments in USDC via x402. It's a good fit when you want SearXNG meta-search results without managing your own SearXNG instance.

## Known failure modes

- Missing required query parameter 'q' returns a 400 or schema validation error
- Payment not settled in USDC causes a 402 Payment Required response blocking the request
- SearXNG backend unavailability results in empty results or a 502/503 error
- Query string too long or containing unsupported characters may return no results
- Rate limiting or metering exhaustion on the 50-route x402 quota blocks further calls

## How this service works

Real-device, multi-region site verification with screenshot proof, live Pocket Network Shannon relay-demand/tokenomics/validator-security data, and on-chain RPC snapshots across 38 chains -- Ethereum, Solana, BSC, and peaq natively, plus 34 more EVM chains via Pocket Network's free public gateway (Arbitrum, Base, Optimism, Polygon, Avalanche, zkSync, Linea, Scroll, Gnosis, and more) -- 54 metered x402 routes, priced and settled per call in USDC. Migrating to Acurast decentralized cloud compute for censorship-resistant hosting -- stay tuned.

## Output

Returns a JSON object with a source field ('searxng') and a resultCount integer, along with an array of web search results (URLs, titles, snippets) matching the query.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "searxng",
  "resultCount": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/organiccryptoyyc-com-web-search-api-6708cf6c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from organiccryptoyyc.com:8443](https://www.zero.xyz/host/organiccryptoyyc.com%3A8443/llms.txt)
