Discover/superuser.com API
live

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.

Endpoints
6
Updated
3mo ago
Try it
Page number for pagination.
Sort order. Accepted values: activity, votes, creation, hot, week, month.
Result ordering. Accepted values: asc, desc.
Filter by tag name (e.g. windows-10, linux, networking).
Number of items per page (max 100).
api.parse.bot/scraper/74566749-b32c-4dfc-a5d7-aec25f0d0027/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 6 totalclick to expand

Fetch a paginated list of questions from Super User with optional tag filtering and sorting. Returns questions with full body HTML.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order. Accepted values: activity, votes, creation, hot, week, month.
orderstringResult ordering. Accepted values: asc, desc.
taggedstringFilter by tag name (e.g. windows-10, linux, networking).
pagesizeintegerNumber of items per page (max 100).
Response
{
  "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.

Common use cases
  • Aggregate Super User answers on a specific tag (e.g., networking) to build a curated troubleshooting knowledge base.
  • Monitor score and answer_count on questions about a software product to track community support volume over time.
  • Use search_questions with sort=relevance to surface the most relevant existing answers before filing a new support ticket.
  • Extract is_accepted answers from get_question_answers to populate a FAQ dataset for technical documentation.
  • Feed get_hot_network_questions results into a dashboard that surfaces trending technical topics across the Stack Exchange network.
  • Filter get_questions by tagged=windows-11 and sort=votes to identify the highest-signal questions for a Windows migration guide.
  • Pull question comments via get_question_comments to analyze edge-case clarifications not captured in accepted answers.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Super User have an official developer API?+
Yes. Super User is part of the Stack Exchange network and is accessible through the official Stack Exchange API at https://api.stackexchange.com. This Parse API targets the Super User site specifically, returning question, answer, and comment data scoped to that community.
What does the `get_question_answers` endpoint return, and how do I identify the accepted answer?+
It returns an array of answer objects, each containing 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?+
Currently the 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?+
Endpoints that support pagination accept an integer 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?+
User profile data (reputation, badges, activity history) is not covered by the current endpoints. Questions and answers do include an 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.
Page content last updated . Spec covers 6 endpoints from superuser.com.
Related APIs in Developer ToolsSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
allaboutcircuits.com API
Access educational electronics content from All About Circuits, including technical articles, circuit diagrams, textbook volumes, and forum discussions organized by category. Search and browse the latest resources, view detailed articles, explore engineering tools, and find answers across their community forums.
bazaardb.gg API
Search and retrieve comprehensive data about The Bazaar game cards, including items, skills, merchants, trainers, monsters, and events with full details like tiers, attributes, enchantments, and tooltips. Quickly find the specific card information you need to optimize your gameplay strategy and deck building.
icons8.com API
Search for millions of icons across different visual styles like colorful, pattern-based, and minimalist designs to find the perfect icon for your project. Discover and retrieve icons in your preferred style to enhance your designs and applications.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.
cursor.directory API
Search and discover AI cursor rules, MCP servers, and job listings organized by category to enhance your development workflow. Browse detailed information about each rule and server to find the tools and configurations that best fit your needs.
smstome.com API
Browse temporary phone numbers from countries around the world and read incoming SMS messages in real time. List available numbers by country, retrieve messages sorted newest to oldest, and search message history by sender or content.