Stack Overflow Question Search - Developer Q&A Data avatar

Stack Overflow Question Search - Developer Q&A Data

Under maintenance

Pricing

from $4.00 / 1,000 results

Go to Apify Store
Stack Overflow Question Search - Developer Q&A Data

Stack Overflow Question Search - Developer Q&A Data

Under maintenance

Search Stack Overflow questions using the free Stack Exchange API. Returns question titles, scores, view counts, answer counts, tags, owner reputation, and links. No authentication required.

Pricing

from $4.00 / 1,000 results

Rating

0.0

(0)

Developer

Chris Drake

Chris Drake

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

a day ago

Last modified

Share

Search Stack Overflow questions by keyword using the free Stack Exchange API. Returns question titles, scores, view counts, answer counts, tags, owner reputation, and links. No authentication required — pure JSON API.

Why use this actor?

  • Free API — uses the public Stack Exchange API, no API key needed
  • Fast — pure HTTP, no browser rendering
  • Rich metadata — includes scores, view counts, tags, and reputation
  • Great for research — find popular questions by topic for content, SEO, or lead generation

Use cases

  • Find popular questions in your niche for content marketing
  • Identify Stack Overflow power users by reputation
  • Track question volume by tag for demand analysis
  • Build Q&A datasets for AI training or research
  • Find un-answered questions to answer (for reputation building)

Input

FieldTypeDescriptionDefault
querystringSearch query (keyword or phrase)""
taggedstringFilter by tag (e.g., python, javascript)""
pagesizeintegerNumber of results (max 100 per page)20
orderstringSort order: desc or ascdesc
sortstringSort by: activity, votes, creation, relevanceactivity

Output

FieldDescription
question_idUnique SO question ID
titleQuestion title
scoreUpvote count
view_countTotal views
answer_countNumber of answers
tagsList of tags
owner_reputationAsker's reputation score
linkDirect URL to question
is_answeredWhether question has accepted answer
creation_dateISO timestamp

Example input

{
"query": "docker networking",
"tagged": "python",
"pagesize": 20,
"sort": "votes"
}

Example output

{
"question_id": 42345678,
"title": "How to debug Python memory leaks in production?",
"score": 672,
"view_count": 817000,
"answer_count": 12,
"tags": ["python", "memory", "debugging"],
"owner_reputation": 15420,
"link": "https://stackoverflow.com/questions/42345678/...",
"is_answered": true
}

Tips

  • Use tagged with popular tags: python, javascript, docker, react
  • Sort by votes to find the most valuable questions
  • Combine query + tagged for precise filtering
  • Use pagesize up to 100 for bulk extraction