Emerge Tools DeadCode API

The DeadCode API from Emerge Tools — 1 operation(s) for deadcode.

Operations 1

POST /deadCode/export Export Reaper analysis results

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/emerge-tools-deadcode-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

emerge-tools-deadcode-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Emerge Analysis Dead Code API
  description: The Emerge API allows you to access app size data for individual builds, including breakdowns of size by Swift module, framework, and Obj-C prefix.
  version: 0.2.0
  x-apievangelist:
    generated: '2026-07-19'
    method: searched
    source: https://docs.emergetools.com/reference (per-operation OpenAPI 3.1.0 blocks merged)
    note: Assembled from the 12 published /reference/*.md OpenAPI definition blocks on docs.emergetools.com; paths and components captured verbatim.
servers:
- url: https://api.emergetools.com/
security:
- ApiKeyAuth: []
tags:
- name: DeadCode
paths:
  /deadCode/export:
    post:
      summary: Export Reaper analysis results
      description: Returns the Reaper analysis results for a given build. You can identify the build using either an uploadId OR a combination of platform, appId, and version.
      parameters:
      - name: uploadId
        in: query
        description: The Emerge ID of the build to analyze. Required if not using platform+appId+version combination.
        required: false
        schema:
          type: string
      - name: platform
        in: query
        description: The platform of the app ('ios' or 'android'). Required if not using uploadId.
        required: false
        schema:
          type: string
          enum:
          - ios
          - android
      - name: appId
        in: query
        description: The bundle ID or package name of the app. Required if not using uploadId.
        required: false
        schema:
          type: string
      - name: version
        in: query
        description: The version of the app. Required if not using uploadId.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: The current page to request data for in the event of pagination. Defaults to 1 if not specified.
        required: false
        schema:
          type: integer
          minimum: 1
          default: 1
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReaperExportResponse'
      tags:
      - DeadCode
components:
  schemas:
    ReaperExportResponse:
      type: object
      properties:
        metadata:
          $ref: '#/components/schemas/ReaperExportMetadata'
        dead_code:
          type: array
          items:
            type: object
            properties:
              class_name:
                type: string
              seen:
                type: boolean
              paths:
                type: object
                additionalProperties: true
        counts:
          type: object
          properties:
            user_sessions:
              type: number
            seen_classes:
              type: number
            unseen_classes:
              type: number
        pagination:
          type: object
          properties:
            current_page:
              type: integer
              description: The current page number of the paginated results
            total_pages:
              type: integer
              description: The total number of pages available
    Platform:
      type: string
      enum:
      - ios
      - android
      description: The platform of the app (iOS or Android)
    ReaperExportMetadata:
      type: object
      properties:
        org_id:
          type: string
        generated_at:
          type: string
        enabled:
          type: boolean
        platform:
          $ref: '#/components/schemas/Platform'
        app_id:
          type: string
        version:
          type: string
      required:
      - org_id
      - generated_at
      - enabled
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: X-API-Token
      in: header