superuser.com APIsuperuser.com ↗
Access Super User questions, answers, comments, and hot network questions via API. Filter by tag, sort by votes, and retrieve full HTML body content.
curl -X GET 'https://api.parse.bot/scraper/74566749-b32c-4dfc-a5d7-aec25f0d0027/get_questions?page=1&sort=activity&pagesize=3' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch a paginated list of questions from Super User with optional tag filtering and sorting. Returns questions with full body HTML.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| sort | string | Sort order. Accepted values: activity, votes, creation, hot, week, month. |
| order | string | Result ordering. Accepted values: asc, desc. |
| tagged | string | Filter by tag name (e.g. windows-10, linux, networking). |
| pagesize | integer | Number of items per page (max 100). |
{
"type": "object",
"fields": {
"items": "array of question objects containing question_id, title, body, tags, score, answer_count, view_count, owner, link, and timestamps",
"has_more": "boolean indicating if more pages are available",
"quota_max": "integer maximum daily API quota",
"quota_remaining": "integer remaining daily API quota"
},
"sample": {
"data": {
"items": [
{
"body": "<p>Using MySQL Workbench how can I draw weak entity sets?</p>",
"link": "https://superuser.com/questions/560866/using-mysql-workbench-how-can-i-draw-weak-entity-sets",
"tags": [
"mysql-workbench"
],
"owner": {
"link": "https://superuser.com/users/143183/drum",
"user_id": 143183,
"user_type": "registered",
"account_id": 769702,
"reputation": 719,
"display_name": "drum"
},
"score": 1,
"title": "Using MySQL Workbench how can I draw weak entity sets?",
"view_count": 6883,
"is_answered": false,
"question_id": 560866,
"answer_count": 1,
"creation_date": 1362441704,
"content_license": "CC BY-SA 4.0",
"last_activity_date": 1778771090
}
],
"has_more": true,
"quota_max": 300,
"quota_remaining": 294
},
"status": "success"
}
}About the superuser.com API
This API exposes 6 endpoints covering Super User's Q&A content, including question listings, individual question details, answers, comments, and hot network questions. The get_questions endpoint returns paginated question objects with fields like title, body, tags, score, answer_count, view_count, and owner, with support for tag filtering and six sort options. It is suited for aggregating technical support content, building search tools, or monitoring community activity on one of the web's largest computing-focused Q&A communities.
Question Retrieval and Search
The get_questions endpoint returns a paginated list of questions with optional filtering via the tagged parameter (e.g., windows-10, linux, networking) and sorting by activity, votes, creation, hot, week, or month. Each question object includes question_id, title, body (full HTML), tags, score, answer_count, view_count, owner, link, and timestamps. The search_questions endpoint accepts a free-text query parameter and supports a relevance sort option not available in the general listing, making it the better choice for keyword-driven lookups.
Answers and Comments
The get_question_answers endpoint takes a required question_id and returns answer objects containing answer_id, question_id, body, score, is_accepted, owner, and timestamps. The is_accepted field distinguishes the community-approved answer from other responses. The get_question_comments endpoint retrieves comments attached to a question, returning comment_id, post_id, body, score, owner, and creation_date. Both endpoints support pagination and sort ordering.
Hot Network Questions
The get_hot_network_questions endpoint takes no inputs and returns the questions currently featured in Super User's sidebar from across the entire Stack Exchange network. Each object includes title, a full link URL, and the site field identifying which Stack Exchange community the question belongs to. This endpoint is useful for surfacing trending cross-network discussions without filtering by tag or keyword.
Quota Tracking
Every response includes quota_max and quota_remaining integer fields reflecting the underlying Stack Exchange API daily quota. Callers can use these fields to implement proactive throttling and avoid exhausting their daily allocation mid-process.
- Aggregate Super User answers on a specific tag (e.g.,
networking) to build a curated troubleshooting knowledge base. - Monitor
scoreandanswer_counton questions about a software product to track community support volume over time. - Use
search_questionswithsort=relevanceto surface the most relevant existing answers before filing a new support ticket. - Extract
is_acceptedanswers fromget_question_answersto populate a FAQ dataset for technical documentation. - Feed
get_hot_network_questionsresults into a dashboard that surfaces trending technical topics across the Stack Exchange network. - Filter
get_questionsbytagged=windows-11andsort=votesto identify the highest-signal questions for a Windows migration guide. - Pull question comments via
get_question_commentsto analyze edge-case clarifications not captured in accepted answers.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Super User have an official developer API?+
What does the `get_question_answers` endpoint return, and how do I identify the accepted answer?+
answer_id, question_id, body (HTML), score, is_accepted, owner, and timestamps. The is_accepted boolean is true for the single answer the question author has marked as the solution. If no answer has been accepted, all items will have is_accepted: false.Does the API expose answer comments or only question comments?+
get_question_comments endpoint retrieves comments attached to questions only. Answer-level comments are not covered by the current endpoint set. You can fork this API on Parse and revise it to add an answer-comments endpoint targeting individual answer IDs.How does pagination work across endpoints?+
page parameter and a pagesize parameter capped at 100. Each response includes a has_more boolean. When has_more is true, increment page by 1 to retrieve the next batch. The get_hot_network_questions and get_question_details endpoints do not paginate.Can I retrieve user profile data or answer statistics for a specific user?+
owner field with basic user metadata, but full profile lookups are not available. You can fork this API on Parse and revise it to add a user-profile endpoint using the Stack Exchange users route.