# Vaaya Parallel Search

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

Runs parallel searches across hundreds of services simultaneously to gather, enrich, and deliver multi-source information in a single call

## Facts

- Endpoint: POST https://vaaya.ai/api/run/parallel/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/vaaya-parallel-search-521b4d03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZvxV2l_BB5zIrO4ljIC82

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 vaaya-parallel-search-521b4d03 -d '<json body>'
```

Example prompt: Search across all available sources in parallel for everything you can find about Acme Corp — their tech stack, key decision makers, recent news, and contact info — so I can prep for an outreach campaign.

## When to prefer this

Choose this endpoint when you need to query many disparate data sources simultaneously without managing individual API keys or accounts. It is ideal for contact enrichment, go-to-market research, and competitive intelligence tasks where breadth of coverage matters and you want a single call to replace dozens of separate integrations.

## Known failure modes

- Query too vague returns low-quality or mixed-relevance results
- Some underlying third-party services may be unavailable, returning partial results
- Rate limiting or timeouts on specific sub-services may cause incomplete aggregation
- Malformed request body returns 400 error
- Insufficient USDC balance causes payment failure and 402 response

## How this service works

Parallel — AI-powered web search via x402 (1¢ flat).

## Output

Aggregated results from parallel searches across hundreds of services, returned as structured data including enriched contact details, company info, web content, and multi-source intelligence — all in a single response without requiring the caller to manage individual API keys or accounts.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "query": {
       "type": "string",
       "minLength": 1
      },
      "mode": {
       "type": "string",
       "enum": [
        "one-shot",
        "fast"
       ]
      },
      "objective": {
       "type": "string"
      }
     },
     "required": [
      "query"
     ],
     "additionalProperties": true,
     "$schema": "http://json-schema.org/draft-07/schema#"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vaaya-parallel-search-521b4d03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
