# Andi Search API (x402.orthogonal.com)

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

Fast web search API with intelligent ranking, intent detection, instant answers, and optional content extraction across web, images, video, news, and weather.

## Facts

- Endpoint: GET https://x402.orthogonal.com/andi/v1/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/andi-search-api-x402-orthogonal-com-f1e1354d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3-Tw-SlOcdEQMhOZbLe2u

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-x402-orthogonal-com-f1e1354d
```

Example prompt: Search for 'best practices for React hooks in 2024' using deep search mode, return up to 20 results in English for the US, and include content extracts so I can see highlights from each page.

## When to prefer this

Choose this endpoint when you need fast, ranked, general-purpose web search with intent-aware result types (images, video, news, weather, computation). It is preferable when you need content extracts, multi-locale support, or safe-search filtering in a single call. Good alternative to direct browser access when you need structured, enrichable results programmatically.

## Known failure modes

- Missing required 'q' parameter returns a 400 error
- Invalid intent value causes fallback to FallbackSearchIntent or error
- Limit values outside 1-100 may be rejected or clamped
- Invalid country or language code may return unexpected locale results
- Deep search depth may time out on complex queries
- Payment not received or insufficient USDC balance returns 402 Payment Required

## How this service works

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

## Output

Returns a ranked list of search results (up to 100) with titles, URLs, snippets, and optional content extracts/highlights. May include instant answers for weather, computation, or navigational queries. Metadata level (basic or full) controls richness of per-result fields. Intent-specific results (images, videos, news) are prioritized when the corresponding intent is set.

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