# scopeapi.dev Deep Multi-Source Web Research

> scopeapi.dev Deep Multi-Source Web Research is a paid API for AI agents from scopeapi.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Performs comprehensive, multi-source web research on any query, returning synthesized findings and source citations

## Facts

- Endpoint: POST https://scopeapi.dev/research
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-dev-deep-multi-source-web-research-e3ccd30d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n9oJwGNvoooOfLb7Npwxz

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 scopeapi-dev-deep-multi-source-web-research-e3ccd30d -d '<json body>'
```

Example prompt: Research the latest advances in solid-state battery technology across multiple web sources and give me a synthesized summary with findings and citations — focus on commercial viability and key players in the space.

## When to prefer this

Choose this endpoint when you need broad, synthesized research from multiple web sources rather than a single answer or a single page scrape. It is best suited for open-ended research questions requiring aggregation across many sites, evidence-backed findings, and citation lists. Prefer it over simple web answer endpoints when depth and multi-source corroboration matter more than speed.

## Known failure modes

- Empty or vague query returns minimal findings
- Topic with little web coverage returns sparse sources list
- Rate limiting or payment failure returns non-200 status
- Highly niche or very recent topics may yield incomplete findings
- Malformed request body missing required 'query' field returns validation error

## How this service works

Perform deep web research on any topic using multiple current sources. Returns a detailed research report with citations, source URLs, evidence, conflicting information, uncertainty, and a source-backed synthesis.

## Output

Returns a JSON object with a status field, a list of sources (URLs and metadata), and a list of findings (synthesized research conclusions drawn from those sources), providing a structured multi-source research report on the queried topic.

## 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": {
     "properties": {
      "query": {
       "type": "string"
      },
      "focus": {
       "type": "string"
      }
     },
     "required": [
      "query"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "ok",
  "sources": [],
  "findings": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scopeapi-dev-deep-multi-source-web-research-e3ccd30d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopeapi.dev](https://www.zero.xyz/host/scopeapi.dev/llms.txt)
