Mojeek AI Summary Scraper avatar

Mojeek AI Summary Scraper

Pricing

from $4.99 / 1,000 results

Go to Apify Store
Mojeek AI Summary Scraper

Mojeek AI Summary Scraper

Scrapes Mojeek's experimental AI-generated summaries for search queries. Extracts the LLM summary text, source citations, source snippets, and organic search results shown alongside the summary.

Pricing

from $4.99 / 1,000 results

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

6 days ago

Last modified

Share

Extract Mojeek's experimental LLM-generated AI summaries for any search query, along with the organic search results that serve as citation sources.

What This Actor Does

Mojeek displays AI-generated summaries (powered by Large Language Models) at the top of search results for many queries. This actor:

  • Navigates to https://www.mojeek.com/search?q=QUERY&fmt=summary
  • Extracts the full AI summary text (both plain and Markdown formats)
  • Records which source positions are cited inline (e.g. [1][3][5])
  • Extracts all 8 organic search results shown alongside the summary (these are the citation sources)
  • Includes the disclaimer text and a unique session ID for the summary

Input

FieldTypeDefaultDescription
queriesarray<string>requiredList of search queries to process
querystringSingle query shortcut (alternative to queries)
languagestring"en"Language code (e.g. en, fr, de)
regionstring""Country code for regional results (e.g. GB, US)
proxyConfigurationobjectApify proxy settings (recommended for cloud runs)

Example Input

{
"queries": ["artificial intelligence", "climate change", "quantum computing"],
"language": "en",
"region": ""
}

Output

Each query produces one dataset item:

FieldTypeDescription
querystringThe search query used
hasSummarybooleanWhether an AI summary was found
aiSummarystringPlain text summary (markdown stripped)
aiSummaryMarkdownstringRaw summary with **bold** and [N] citation markers
aiSummaryLengthnumberLength of the markdown summary in characters
summaryIdstringUnique session ID for this summary (data-suid)
disclaimerstringMojeek's disclaimer about AI accuracy
citedSourcePositionsarray<number>Positions cited inline, e.g. [1, 3, 5]
citedSourcesCountnumberNumber of unique citation positions
organicResultsarray<object>The 8 source pages listed alongside the summary
organicResultsCountnumberNumber of organic results (usually 8)
searchUrlstringFinal URL used for this query
languagestringLanguage used
regionstringRegion used
scrapedAtstringISO timestamp

organicResults Item Fields

FieldTypeDescription
positionnumberCitation position (1–8)
titlestringPage title
urlstringFull URL
displayedUrlstringDisplayed URL under the title
snippetstringShort description (when available)

Example Output

{
"query": "artificial intelligence",
"hasSummary": true,
"aiSummary": "Artificial Intelligence (AI) refers to the capability of computational systems to perform tasks typically associated with human intelligence [1][3][5]...",
"aiSummaryMarkdown": "**Artificial Intelligence (AI)** refers to the capability... [1][3][5]...",
"aiSummaryLength": 772,
"summaryId": "78c731e97d320257",
"disclaimer": "Summaries are experimental and generated by large language models...",
"citedSourcePositions": [1, 2, 3, 4, 5, 7, 8],
"citedSourcesCount": 7,
"organicResults": [
{
"position": 1,
"title": "Artificial intelligence - Wikipedia",
"url": "https://en.wikipedia.org/wiki/Artificial_Intelligence",
"displayedUrl": "https://en.wikipedia.org › wiki › Artificial_Intelligence",
"snippet": null
}
],
"organicResultsCount": 8,
"searchUrl": "https://www.mojeek.com/search?q=artificial+intelligence&fmt=summary&kalid=78c731e97d320257",
"language": "en",
"region": null,
"scrapedAt": "2026-05-12T17:21:43.011Z"
}

Dataset Views

Two views are available in the Apify console:

  • AI Summary Results Overview — Compact table: query, hasSummary, summary length, cited sources count, organic count, scrapedAt
  • Full AI Summaries — Extended table: includes the full aiSummary, aiSummaryMarkdown, disclaimer, citedSourcePositions, and searchUrl

Notes

  • Experimental feature: Mojeek AI summaries are experimental and not always available. hasSummary will be false when no summary is shown.
  • No pagination: Each query produces exactly one summary (there is no multi-page summary).
  • Source details: Inline citation details (span.details) are dynamically loaded by Mojeek on user click, so citedSourcePositions tracks which organic results are referenced rather than fetching dynamic data.
  • Proxy: A residential proxy (useApifyProxy: true) is recommended for high-volume runs to avoid rate limiting.
  • Browser: Uses Firefox (Playwright) for JavaScript rendering.

Use Cases

  • AI research: Compare how LLMs summarize the same topic across queries
  • Content monitoring: Track what sources Mojeek's AI cites for specific topics
  • SEO analysis: See which pages are cited as authoritative sources by Mojeek AI
  • Query benchmarking: Evaluate summary quality and length across different queries