Limrun Downloads API

The Downloads API from Limrun — 1 operation(s) for downloads.

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/limrun-downloads-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 email required.

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

OpenAPI Specification

limrun-downloads-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  version: 1.0.0
  title: Limrun Analytics Downloads API
tags:
- name: Downloads
paths:
  /v1/downloads/resolve:
    post:
      summary: Resolve a runtime download URL
      description: 'Resolves a runtime limulator download URL into the internal download bundle shape.

        URLs that point at Limrun-owned asset-storage buckets may be upgraded to a

        header-signed TAG request with the original URL as fallback, but only after

        the original URL successfully authorizes a one-byte probe. Other URLs are

        returned unchanged. Possession of the source URL is the authorization

        capability for this endpoint.

        '
      operationId: resolveDownload
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResolveDownloadRequest'
      responses:
        '200':
          description: Resolved download request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResolvedDownload'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
      tags:
      - Downloads
components:
  schemas:
    APIError:
      type: object
      properties:
        message:
          type: string
        reason:
          type: string
          enum:
          - NoSubscription
          - NoRemainingMinutes
          - ConcurrencyLimitReached
      required:
      - message
    ResolveDownloadRequest:
      type: object
      properties:
        url:
          type: string
      required:
      - url
    ResolvedDownload:
      type: object
      properties:
        url:
          type: string
        headers:
          type: object
          additionalProperties:
            type: string
        fallbackUrl:
          type: string
        fallbackHeaders:
          type: object
          additionalProperties:
            type: string
      required:
      - url