MediaRuntime Discovery API

Public capability and contract discovery.

Operations 1

GET /v1/capabilities Get supported capabilities #

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/mediaruntime-discovery-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

mediaruntime-discovery-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Asynchronous media processing for video, audio, and images.
  title: MediaRuntime Discovery API
  version: 1.0.0
servers:
- description: Production
  url: https://mediaruntime.com
tags:
- description: Public capability and contract discovery.
  name: Discovery
paths:
  /v1/capabilities:
    get:
      description: Returns the same output types, presets, aliases, optional features, tiers, and input requirements enforced when a job is submitted. No authentication is required.
      operationId: getCapabilities
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CapabilitiesResponse'
          description: Successful Response
      security: []
      summary: Get supported capabilities
      tags:
      - Discovery
components:
  schemas:
    PresetCapability:
      description: One preset entry returned by the public capability catalogue.
      properties:
        artifacts:
          items:
            type: string
          title: Artifacts
          type: array
        base_tier:
          title: Base Tier
          type: string
        codec:
          anyOf:
          - type: string
          - type: 'null'
          title: Codec
        container:
          anyOf:
          - type: string
          - type: 'null'
          title: Container
        description:
          title: Description
          type: string
        example:
          anyOf:
          - type: string
          - type: 'null'
          title: Example
        output_type:
          title: Output Type
          type: string
        parameterized:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Parameterized
        source_kinds:
          items:
            type: string
          title: Source Kinds
          type: array
      required:
      - output_type
      - source_kinds
      - base_tier
      - description
      - artifacts
      title: PresetCapability
      type: object
    OutputAliasCapability:
      description: A stable alias and the complete output recipe it materializes.
      properties:
        artifacts:
          items:
            type: string
          title: Artifacts
          type: array
        output:
          additionalProperties: true
          title: Output
          type: object
        preset:
          title: Preset
          type: string
        tier:
          title: Tier
          type: string
        type:
          title: Type
          type: string
      required:
      - type
      - preset
      - tier
      - artifacts
      - output
      title: OutputAliasCapability
      type: object
    CapabilitiesResponse:
      properties:
        capabilities:
          additionalProperties:
            type: string
          title: Capabilities
          type: object
        features:
          additionalProperties:
            additionalProperties: true
            type: object
          title: Features
          type: object
        notes:
          items:
            type: string
          title: Notes
          type: array
        output_aliases:
          additionalProperties:
            $ref: '#/components/schemas/OutputAliasCapability'
          title: Output Aliases
          type: object
        output_types:
          additionalProperties:
            items:
              type: string
            type: array
          title: Output Types
          type: object
        preset_overrides:
          additionalProperties:
            items:
              type: string
            type: array
          title: Preset Overrides
          type: object
        preset_requirement_replacements:
          additionalProperties:
            items:
              type: string
            type: array
          title: Preset Requirement Replacements
          type: object
        presets:
          additionalProperties:
            $ref: '#/components/schemas/PresetCapability'
          title: Presets
          type: object
        public_presets:
          items:
            type: string
          title: Public Presets
          type: array
      required:
      - capabilities
      - output_types
      - preset_overrides
      - preset_requirement_replacements
      - presets
      - public_presets
      - features
      - output_aliases
      - notes
      title: CapabilitiesResponse
      type: object
  securitySchemes:
    ProductionApiKey:
      description: MediaRuntime server-side API key. Keep it in a secret manager and never expose it in browser or mobile code.
      in: header
      name: X-API-Key
      type: apiKey
    SandboxToken:
      description: Ephemeral credential returned by POST /v1/sandbox/session for bounded sandbox jobs only.
      in: header
      name: X-Sandbox-Token
      type: apiKey
externalDocs:
  description: MediaRuntime developer documentation
  url: https://mediaruntime.com/docs