Multi-Source Tech Intelligence Search avatar

Multi-Source Tech Intelligence Search

Under maintenance

Pricing

Pay per event + usage

Go to Apify Store
Multi-Source Tech Intelligence Search

Multi-Source Tech Intelligence Search

Under maintenance

Search 6+ tech sources in one API call. Structured JSON for competitive intelligence, trend monitoring and market research. Pay-per-use.

Pricing

Pay per event + usage

Rating

0.0

(0)

Developer

GENYA ishinabe

GENYA ishinabe

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

12 hours ago

Last modified

Categories

Share

Search 6+ tech sources in one API call and get structured JSON results. Built for developers, analysts, and AI agents who need real-time tech intelligence without juggling multiple APIs.

What does Multi-Source Tech Intelligence Search do?

Multi-Source Tech Intelligence Search queries Hacker News, GitHub, npm, PyPI, Product Hunt, and X/Twitter simultaneously and returns unified, structured JSON. Instead of writing separate integrations for each platform, you make one request and get normalized results with relevance scores, metadata, and direct links.

Use it for:

  • Competitive intelligence — track what competitors are building and launching
  • Trend monitoring — spot emerging technologies before they go mainstream
  • Market research — understand developer sentiment and adoption patterns
  • Due diligence — quickly assess a technology's ecosystem health
  • 6 sources, 1 call — HN, GitHub, npm, PyPI, Product Hunt, and X/Twitter
  • Structured output — consistent JSON schema across all sources
  • Pay-per-use — no subscription, pay only for what you search
  • Real-time data — live API queries, not cached or stale data
  • Partial failure tolerance — if one source is down, others still return results
  • AI-powered X search — uses xAI's Grok model for intelligent Twitter/X results

How much does it cost?

This Actor uses Pay Per Event pricing — you only pay for searches you actually run.

What you getPrice per callEvent name
Search one free source (HN, GitHub, npm, PyPI, Product Hunt, or Bazaar)$0.005search-free
Search X/Twitter (AI-powered via xAI Grok)$0.10search-x
Balanced report (4 free sources in parallel)$0.02report-balanced
Comprehensive report (all 6 sources including X)$0.15report-full

Example: Running 100 balanced reports costs just $2.00.

Input

All endpoints accept query parameters via HTTP GET:

ParameterTypeRequiredDescription
qstringYesSearch query
per_pagenumberNoResults per source (default: 10, max: 50)
sortstringNoSort order (source-specific)
focusstringNoReport preset: balanced or comprehensive
sourcesstringNoComma-separated source list for reports

Output

Every response follows a consistent structure:

{
"success": true,
"source": "hackernews",
"query": "AI agents",
"count": 10,
"data": [
{
"title": "Show HN: Open-source AI agent framework",
"url": "https://news.ycombinator.com/item?id=...",
"points": 342,
"num_comments": 128,
"created_at": "2026-02-20T10:30:00Z"
}
]
}

Report endpoints return results grouped by source:

{
"success": true,
"query": "MCP servers",
"focus": "balanced",
"sources_queried": ["hn", "github", "npm", "pypi"],
"results": {
"hn": { "success": true, "count": 10, "data": [...] },
"github": { "success": true, "count": 10, "data": [...] },
"npm": { "success": true, "count": 10, "data": [...] },
"pypi": { "success": true, "count": 5, "data": [...] }
}
}

How to use

This Actor runs in Standby mode — it's always available as an HTTP API.

# Search Hacker News
curl "https://gen-ishinabe--scout-multi-source-search.apify.actor/scout/hn?q=AI+agents&per_page=5" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN"
# Search GitHub repositories
curl "https://gen-ishinabe--scout-multi-source-search.apify.actor/scout/github?q=mcp+server&sort=stars&per_page=10" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN"
# Search npm packages
curl "https://gen-ishinabe--scout-multi-source-search.apify.actor/scout/npm?q=openai&per_page=10" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN"
# Search X/Twitter (AI-powered)
curl "https://gen-ishinabe--scout-multi-source-search.apify.actor/scout/x?q=x402+protocol&per_page=10" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN"

Multi-source reports

# Balanced report (4 free sources)
curl "https://gen-ishinabe--scout-multi-source-search.apify.actor/scout/report?q=MCP+servers&per_page=5" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN"
# Comprehensive report (all 6 sources including X)
curl "https://gen-ishinabe--scout-multi-source-search.apify.actor/scout/report/full?q=AI+agents&per_page=5" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN"

Available endpoints

EndpointSourcePrice
/scout/hnHacker News (Algolia)$0.005
/scout/githubGitHub Repositories$0.005
/scout/npmnpm Registry$0.005
/scout/pypiPyPI Packages$0.005
/scout/phProduct Hunt$0.005
/scout/x402x402 Bazaar$0.005
/scout/xX/Twitter (xAI Grok)$0.10
/scout/reportBalanced (4 sources)$0.02
/scout/report/fullComprehensive (6 sources)$0.15
/healthHealth checkFree

Integrations

  • Direct HTTP API — use from any language with HTTP support
  • Apify API client — use the official Apify SDK for Node.js or Python
  • Zapier / Make / n8n — connect via Apify's built-in integrations
  • AI agents — structured JSON output is optimized for LLM consumption

Limitations

  • X/Twitter search uses AI — results come from xAI's Grok model with web search, so structure may occasionally vary
  • PyPI search is name-based — searches by package name variants, not full-text keyword search
  • Product Hunt is topic-based — queries are mapped to PH topic slugs; niche queries may return fewer results
  • Rate limits — GitHub allows ~30 requests/minute with authentication; heavy concurrent use may hit limits
  • Cold start — first request after idle period takes 15-20 seconds; subsequent requests are sub-second