# PayWeave Parallel Agentic Web Search

> PayWeave Parallel Agentic Web Search is a paid API for AI agents from parallel.payweave.services, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14, last successful call 2026-08-13).

Executes agentic web search and structured research tasks, returning structured output with citations and run metadata

## Facts

- Endpoint: POST https://parallel.payweave.services/task
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-13
- Success rate: 100% of calls made through Zero
- Rating: 1.3 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-parallel-agentic-web-search-4af88584
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y6QwoJLfl321JumdSzLle

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 payweave-parallel-agentic-web-search-4af88584 -d '<json body>'
```

Example prompt: Search the web and give me a structured research report on the current state of solid-state battery commercialization — include key players, recent breakthroughs, and market timelines, with citations for everything.

## When to prefer this

Choose this endpoint when you need agentic, multi-step web research that returns structured, cited results rather than a raw web search listing. It is especially suited for tasks requiring synthesis across multiple sources, custom output schemas via task_spec, or integration with MCP servers. Prefer it over simple search APIs when you need organized, citation-backed output rather than a list of links.

## Known failure modes

- Missing required 'input' field returns a validation error
- Missing required 'processor' field causes task rejection
- Invalid or unrecognized processor identifier results in an error response
- Web sources unavailable or blocked by source_policy may yield incomplete results
- Task timeout for complex multi-step research queries
- Webhook delivery failure if webhook URL is unreachable
- Rate limiting if too many concurrent calls are made

## How this service works

Agentic web search and structured research.

## Output

A completed Parallel task run containing structured output shaped by the requested task_spec (e.g. a report, list, or data object), citations linking to source URLs, plus metadata fields like run_id and status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input",
  "processor"
 ],
 "properties": {
  "input": {
   "type": "string"
  },
  "webhook": {
   "type": "object"
  },
  "metadata": {
   "type": "object"
  },
  "processor": {
   "enum": [
    "lite",
    "base",
    "core",
    "core2x",
    "pro",
    "ultra",
    "ultra2x",
    "ultra4x",
    "ultra8x"
   ],
   "type": "string"
  },
  "task_spec": {
   "type": "object"
  },
  "mcp_servers": {
   "type": "array"
  },
  "enable_events": {
   "type": "boolean"
  },
  "source_policy": {
   "type": "object"
  },
  "previous_interaction_id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {},
 "description": "Completed Parallel task run, forwarded verbatim: structured `output` (shape follows the requested `task_spec`) with citations, plus run metadata such as run_id and status.",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-parallel-agentic-web-search-4af88584/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from parallel.payweave.services](https://www.zero.xyz/host/parallel.payweave.services/llms.txt)
