Topic trend brief API to check whether interest in a topic is rising: send a topic and window, get back Wikipedia pageview trend, recent news mention volume, Hacker News mention…
Topic trend brief API to check whether interest in a topic is rising: send a topic and window, get back Wikipedia pageview trend, recent news mention volume, Hacker News mention volume, and X/Twitter mention volume in one call. Built for agents asking 'is this topic trending' or 'rising topic' without polling four separate signal sources by hand. Composite: one call runs wikipedia-pageviews + news-search + hn-search + x-search in parallel and reports interest over time plus a rising/flat verdict. hn-search is the required leg; wikipedia-pageviews (needs a matching article title), news-search, and x-search (needs an X bearer token configured) degrade the brief instead of failing the call when their upstream can't answer. Use it as a topic trend API, rising-topic detector, or mention-volume tracker for research and market-scouting agents.
| Method | Endpoint | Price | Description |
|---|---|---|---|
POST | /v1/marketplace/api/topic-trend-brief | $0.0575 | Invoke Topic Trend Brief (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/topic-trend-brief \
-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/topic-trend-brief \
-H 'Content-Type: application/json' \
-H 'X-PAYMENT: <signed-payload>' \
-d '{}'
Open in the marketplace
Docs: Getting started · x402 payments · x402 discovery · All APIs