# Andi Search API via x402.orth.sh

> Andi Search API via x402.orth.sh is a paid API for AI agents from x402.orth.sh, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fast web search API with intelligent ranking, instant answers, image/video/news intent support, and content enrichment via x402 micropayment

## Facts

- Endpoint: GET https://x402.orth.sh/andi/v1/search
- 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/andi-search-api-via-x402-orth-sh-40f6a090
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QW5juLa3f0uBgTY_WDgcV

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 andi-search-api-via-x402-orth-sh-40f6a090
```

Example prompt: Search for 'best practices for React hooks in 2024' and give me the top 10 results — use deep search depth, enable content extracts, and filter for English results from the US.

## When to prefer this

Choose this endpoint when an AI agent needs live web search results with intelligent intent-based routing (news, images, video, weather, computation, navigation), especially when fine-grained control over language, country, depth, and result enrichment is needed. Prefer over generic search APIs when micropayment-based access (x402) is the payment model in use.

## Known failure modes

- Missing required 'q' query parameter returns validation error
- Payment not provided or invalid x402 micropayment returns 402 Payment Required
- Limit out of range (>100 or <1) returns parameter error
- Unsupported intent type falls back to FallbackSearchIntent
- Deep search depth may time out for complex queries
- Rate limiting if too many requests are issued rapidly

## How this service works

Fast, high-quality search API with intelligent ranking, instant answers, and result enrichment.

## Output

Returns a ranked list of web search results including URLs, titles, snippets, and optionally content extracts, metadata, and specialized results (images, videos, news, weather, computations) based on the detected or specified search intent.

## 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",
     "properties": {
      "q": {
       "type": "string",
       "example": "react hooks tutorial",
       "description": "Search query (or array of up to 5 queries)"
      },
      "safe": {
       "type": "string",
       "default": "false",
       "example": "false",
       "description": "Enable safe search filtering"
      },
      "depth": {
       "type": "string",
       "default": "fast",
       "example": "fast",
       "description": "Search depth: fast or deep"
      },
      "limit": {
       "type": "string",
       "default": "10",
       "example": "10",
       "description": "Number of results (1-100)"
      },
      "units": {
       "type": "string",
       "example": "metric",
       "description": "Units: metric or imperial"
      },
      "format": {
       "type": "string",
       "default": "json",
       "example": "json",
       "description": "Response format: json"
      },
      "intent": {
       "type": "string",
       "default": "FallbackSearchIntent",
       "example": "FallbackSearchIntent",
       "description": "Search intent. Supported Intents: ImageSearchIntent - Prioritize image results, VideoSearchIntent - Prioritize video results, NewsSearchIntent - Prioritize news articles, WeatherSearchIntent - Weather information, ComputationIntent - Mathematical calculations and computations, NavigationalSearchIntent - Direct navigation to websites, Not detected or specified: FallbackSearchIntent - General web search (default)"
      },
      "country": {
       "type": "string",
       "default": "US",
       "example": "US",
       "description": "Country code (US, GB, etc.)"
      },
      "extracts": {
       "type": "string",
       "default": "false",
       "example": "false",
       "description": "Enable content extracts/highlights"
      },
      "language": {
       "type": "string",
       "default": "en",
       "example": "en",
       "description": "Language code (en, es, fr, etc.)"
      },
      "metadata": {
       "type": "string",
       "default": "basic",
       "example": "basic",
       "descri
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/andi-search-api-via-x402-orth-sh-40f6a090/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orth.sh](https://www.zero.xyz/host/x402.orth.sh/llms.txt)
