ModelRush Predictions API

The Predictions API from ModelRush — 1 operation(s) for predictions.

Operations 2

GET /predictions/{id} Get a unified media Prediction #
DELETE /predictions/{id} Request Prediction cancellation #

Documentation

Specifications

Other Resources

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/modelrush-predictions-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

modelrush-predictions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ModelRush Public Predictions API
  version: 2026-09-04.3
  summary: One API for text, image, video, and voice models
  description: Public discovery and representative authenticated ModelRush API contracts. Model and region availability are time-sensitive; call the discovery endpoints before selecting a model or execution region. Authenticated generation operations may create billable usage. Keep API keys server-side. The Apache-2.0 license covers this API description, not access to the hosted service or its underlying implementation. Service use remains governed by the linked terms of service.
  termsOfService: https://modelrush.ai/terms
  contact:
    name: ModelRush
    url: https://modelrush.ai
    email: info@modelrush.ai
  license:
    name: Apache 2.0
    identifier: Apache-2.0
servers:
- url: https://api.modelrush.ai/v1
  description: Production
security:
- bearerAuth: []
tags:
- name: Predictions
paths:
  /predictions/{id}:
    get:
      operationId: getPrediction
      summary: Get a unified media Prediction
      tags:
      - Predictions
      parameters:
      - $ref: '#/components/parameters/ResourceId'
      responses:
        '200':
          description: Current Prediction state
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Prediction'
        '404':
          $ref: '#/components/responses/Error'
    delete:
      operationId: cancelPrediction
      summary: Request Prediction cancellation
      tags:
      - Predictions
      parameters:
      - $ref: '#/components/parameters/ResourceId'
      responses:
        '200':
          description: Terminal Prediction state
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Prediction'
        '409':
          $ref: '#/components/responses/Error'
components:
  schemas:
    Prediction:
      type: object
      required:
      - id
      - status
      properties:
        id:
          type: string
        object:
          type: string
        status:
          type: string
          enum:
          - queued
          - processing
          - succeeded
          - failed
          - cancelled
          - expired
        provider_status:
          type: string
        model:
          type: string
        modelrush_region:
          type: string
        poll_url:
          type: string
        output: {}
        error:
          $ref: '#/components/schemas/ErrorObject'
      additionalProperties: true
    ErrorObject:
      type: object
      required:
      - code
      - message
      - type
      properties:
        code:
          type: string
        message:
          type: string
        type:
          type: string
      additionalProperties: true
    ErrorResponse:
      type: object
      required:
      - error
      properties:
        error:
          $ref: '#/components/schemas/ErrorObject'
      additionalProperties: true
  responses:
    Error:
      description: Structured API error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  parameters:
    ResourceId:
      name: id
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: ModelRush API key
externalDocs:
  description: ModelRush documentation
  url: https://modelrush.ai/docs