Quora Questions Scraper — Search Results avatar

Quora Questions Scraper — Search Results

Under maintenance

Pricing

Pay per usage

Go to Apify Store
Quora Questions Scraper — Search Results

Quora Questions Scraper — Search Results

Under maintenance

Scrape Quora search results for any keyword: question text, answer count, URL and top answer preview (first 500 chars) as clean JSON. No API key, login or proxy required.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Oaida Adrian

Oaida Adrian

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 hours ago

Last modified

Share

Scrape Quora search results for any keyword and get every question as clean, structured JSON — question text, URL, answer count and a preview of the top answer. No API key, no login, no proxy required.

Built for content marketers, SEO teams and researchers who need to know exactly what people are asking about a topic.

Why this Actor

  • No account, no API key, no proxy budget — reads the public Quora search pages directly with browser-grade TLS.
  • Answer-count signal — every row includes how many answers the question has, so you can rank questions by engagement.
  • Top-answer preview — a 500-character preview of the top answer gives instant context without another fetch.
  • Multi-keyword support — pass several search terms and pull question sets for a whole topic in one run.
  • Pay per result — a small fee per question scraped; a 100-question run costs a fraction of a cent.

How it works

For each keyword the Actor requests the Quora search results page, parses the question list, and outputs one dataset item per question — about 10 questions per page, paging automatically up to maxQuestionsPerKeyword.

Input

{
"keywords": ["best programming languages 2025"],
"maxQuestionsPerKeyword": 10
}
FieldTypeDescription
keywordsarraySearch terms — required
maxQuestionsPerKeywordintegerQuestions to scrape per keyword (default 10, max 200)

Output (one item per question)

{
"keyword": "best programming languages 2025",
"questionText": "What are the best programming languages to learn in 2025?",
"questionUrl": "https://www.quora.com/What-are-the-best-programming-languages-to-learn-in-2025",
"answerCount": 42,
"topAnswerPreview": "Python and JavaScript remain top choices for beginners..."
}

Use cases

  • 📝 Content research — find trending, high-engagement questions to answer in blog posts and videos.
  • 🔍 SEO — discover question-based keywords and long-tail search opportunities people actually type.
  • 📊 Market intelligence — understand what consumers are asking about your product category.
  • 🔗 Link building — identify high-traffic Quora questions for expert outreach.
  • 🗣️ Community monitoring — watch a niche for new questions as they appear.

Run it from the API

curl -X POST "https://api.apify.com/v2/acts/darknezz~quora-questions-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"keywords":["best programming languages 2025"],"maxQuestionsPerKeyword":20}'

Scheduling: attach an Apify Schedule (e.g. weekly) to keep a fresh question feed for your content calendar.

Pricing

Pay per event: a small fee for each question scraped, plus Apify's standard platform events (actor start + dataset item). No subscription — you pay only for what you run.

FAQ

Do I need a Quora account or API key? No. The Actor reads the public search results pages directly.

Why is topAnswerPreview truncated? It holds the first 500 characters of the top answer — enough for context, small enough to keep datasets lean.

How many questions can I get? Up to maxQuestionsPerKeyword (max 200 per keyword). Quora pages carry ~10 questions each and the Actor pages through automatically.

Are the questions de-duplicated across keywords? Each keyword is searched independently, so the same question can appear under multiple keywords — that is intentional and useful for keyword mapping.

Is scraping this legal? Questions and answers are public and unauthenticated. You are responsible for complying with Quora's terms and applicable laws for how you use the data.