Discover/decomp.me API
live

decomp.me APIdecomp.me

Access decomp.me decompilation projects, user contributions, and site statistics via 4 endpoints. Retrieve scratch details, source code, compiler flags, and scores.

Endpoints
4
Updated
14d ago
Try it
Sort order for results. Accepted values: '-creation_time' (newest first), '-last_updated'
Filter for scratches with a registered owner. Accepted values: 'true', 'false'.
Number of results per page.
api.parse.bot/scraper/28e2a231-d752-4389-890d-c31ca235a587/<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/28e2a231-d752-4389-890d-c31ca235a587/get_recent_scratches?page_size=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Retrieve the latest decompilation projects and site activity. Returns a paginated list of scratch projects sorted by the specified ordering.

Input
ParamTypeDescription
orderingstringSort order for results. Accepted values: '-creation_time' (newest first), '-last_updated' (recently edited first).
has_ownerstringFilter for scratches with a registered owner. Accepted values: 'true', 'false'.
page_sizestringNumber of results per page.
Response
{
  "type": "object",
  "fields": {
    "next": "string or null, URL for next page of results",
    "results": "array of scratch summary objects containing slug, owner, name, platform, compiler, score, max_score, creation_time, last_updated",
    "previous": "string or null, URL for previous page of results"
  },
  "sample": {
    "data": {
      "next": "https://decomp.me/api/scratch?cursor=cD0yMDI2LTA1LTA3&has_owner=true&ordering=-creation_time&page_size=5",
      "results": [
        {
          "name": "func_80069220",
          "slug": "lOeY3",
          "owner": {
            "id": 8779709,
            "username": "Shy Wolverine (anon)",
            "is_anonymous": true
          },
          "score": 37625,
          "parent": null,
          "preset": 136,
          "compiler": "ido5.3",
          "platform": "n64",
          "libraries": [],
          "max_score": 41800,
          "last_updated": "2026-05-07T15:12:13.692098+09:00",
          "creation_time": "2026-05-07T15:07:07.430953+09:00",
          "match_override": false
        }
      ],
      "previous": null
    },
    "status": "success"
  }
}

About the decomp.me API

The decomp.me API exposes 4 endpoints for querying decompilation scratch projects, user contributions, and site-wide statistics on decomp.me. The get_scratch_detail endpoint returns full project data including C source code, compiler flags, target platform, match score, and version family history — giving programmatic access to the same data visible on individual scratch pages.

Endpoints and Data Coverage

The API covers four areas of decomp.me. get_recent_scratches returns a paginated list of scratch projects sortable by -creation_time or -last_updated, with optional filtering by whether a scratch has a registered owner via the has_owner parameter. Each result includes the scratch slug, owner, name, platform, compiler, score, max_score, creation_time, and last_updated. The page_size parameter controls how many results appear per page.

Scratch Detail

get_scratch_detail accepts a slug (obtainable from get_recent_scratches results) and returns the complete record for that project: the source_code string containing the C decompilation attempt, the context header used for compilation, the compiler identifier, the platform tag (e.g. n64, gc_wii), and a family array listing related scratch version summaries. The score and max_score integers together indicate how closely the compiled output matches the target assembly.

User Contributions and Site Stats

get_user_contributions takes a GitHub/decomp.me username and returns that user's scratch projects in the same paginated format as get_recent_scratches, with the same ordering and page_size controls. get_stats requires no parameters and returns three site-wide counters: asm_count (total assembly instructions across all scratches), scratch_count (total projects), and github_user_count (registered users). These are useful for tracking platform growth over time.

Common use cases
  • Monitor newly created or recently updated decompilation scratches using get_recent_scratches with -last_updated ordering.
  • Build a leaderboard by collecting score and max_score fields from multiple scratches to rank contributors by match quality.
  • Audit a specific contributor's output by fetching all their scratches via get_user_contributions with their GitHub username.
  • Diff decompilation approaches across related scratch versions using the family array returned by get_scratch_detail.
  • Track platform-specific activity by filtering get_recent_scratches results by the platform field (e.g. n64, gc_wii).
  • Aggregate site growth metrics over time by polling get_stats for changes in scratch_count and github_user_count.
  • Extract C source code and compiler context from a scratch using source_code and context fields for offline analysis.
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 decomp.me have an official developer API?+
decomp.me exposes a public API documented at https://decomp.me/api — it covers scratches, users, and compiler listings. The Parse API surfaces a practical subset of that data focused on recent activity, scratch details, user contributions, and site statistics.
What does `get_scratch_detail` return beyond what the list endpoints show?+
get_scratch_detail adds four fields not present in list results: source_code (the full C decompilation text), context (the C header context passed to the compiler), the family array of related scratch version summaries, and the compiler string. The list endpoints only carry summary fields like slug, name, score, max_score, platform, and timestamps.
Can I filter scratches by platform or compiler?+
Not directly via a query parameter. get_recent_scratches supports filtering by has_owner and sorting by ordering, but platform and compiler filtering is not exposed as a parameter. You can retrieve paginated results and filter on platform or compiler client-side using the fields present in each result object. You can also fork this API on Parse and revise it to add a platform or compiler filter endpoint.
Is assembly output or diff data available from the API?+
Not currently. The API returns source_code (C source), context, score, and max_score, but does not expose the compiled assembly output or the line-by-line diff between the attempt and the target. You can fork this API on Parse and revise it to add an endpoint that surfaces assembly diff data if decomp.me exposes it via their public API.
How fresh is the data returned by these endpoints?+
Results reflect the current state of decomp.me at request time. get_recent_scratches sorted by -last_updated returns projects in the order they were most recently edited, so the freshness of any given scratch depends on when its author last saved changes. There is no delta or webhook mechanism — callers need to poll periodically to detect updates.
Page content last updated . Spec covers 4 endpoints from decomp.me.
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.