Research scan API for a multi source search sweep: send one query and get back web results, recent news, an encyclopedia summary, academic papers, and developer/Hacker News chatter in a single call.
Research scan API for a multi source search sweep: send one query and get back web results, recent news, an encyclopedia summary, academic papers, and developer/Hacker News chatter in a single call. Built for agent-led research, topic research, and due-diligence sweeps where a caller would otherwise fire off five separate lookups and merge them by hand. Composite: one call runs web-search + news-search + wikipedia-search + arxiv-search + hn-search in parallel, dedupes hits by URL, and tags each result with its source. Only web-search is required; news/wikipedia/arxiv/hn degrade the response instead of failing the call if their upstream is slow or down. Use it as a research scan API, a topic research tool, or a web-news-papers aggregator for agents scoping a subject before they write or decide.
| Method | Endpoint | Price | Description |
|---|---|---|---|
POST | /v1/marketplace/api/research-topic-scan | $0.069 | Invoke Research Topic Scan (Search) and return the upstream response. |
Requests are paid per call over the x402 protocol. Call the endpoint, receive a 402 Payment Required quote, then repeat the request with the signed payment header. The SDKs do both steps for you.
# 1. Ask for a quote
curl -i -X POST https://api.jarvisclaw.ai/v1/marketplace/api/research-topic-scan \
-H 'Content-Type: application/json' \
-d '{}'
# 2. Pay it (the SDK signs and retries for you)
curl -X POST https://api.jarvisclaw.ai/v1/marketplace/api/research-topic-scan \
-H 'Content-Type: application/json' \
-H 'X-PAYMENT: <signed-payload>' \
-d '{}'
Open in the marketplace
Docs: Getting started · x402 payments · x402 discovery · All APIs