Fabric Origin Rotten Tomatoes API

Tomatometer, Audience Scores, critic snippets and critics consensus for movies, shows, seasons and episodes, keyed on Origin identifiers.

Operations 4

GET /RottenTomatoes/Episode Get Rotten Tomatoes reviews and scores for episode #
GET /RottenTomatoes/Movie Get Rotten Tomatoes reviews and scores for movie #
GET /RottenTomatoes/Season GetRottenTomatoesSeason #
GET /RottenTomatoes/Show Get Rotten Tomatoes reviews and scores for Show #

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/rotten-tomatoes-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

fabric-origin-rotten-tomatoes-api-openapi.yml Raw ↑
openapi: 3.1.1
info:
  title: Rotten Tomatoes API
  version: '1.0'
tags:
- name: rottentomatoes
servers:
- url: https://api.origin.fabricdata.com
paths:
  /RottenTomatoes/Episode:
    get:
      tags:
      - rottentomatoes
      summary: Get Rotten Tomatoes reviews and scores for episode
      description: Get Rotten Tomatoes reviews and scores for Show
      operationId: GetRottenTomatoesEpisodeEpisode_Get
      parameters:
      - schema:
          type: integer
          format: int64
        name: EpisodeId
        in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewData'
      deprecated: false
  /RottenTomatoes/Movie:
    get:
      tags:
      - rottentomatoes
      summary: Get Rotten Tomatoes reviews and scores for movie
      description: Get Rotten Tomatoes reviews and scores for movie
      operationId: GetRottenTomatoesMovieMovie_Get
      parameters:
      - schema:
          type: integer
          format: int64
        name: MovieId
        in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewData'
      deprecated: false
  /RottenTomatoes/Season:
    get:
      tags:
      - rottentomatoes
      summary: GetRottenTomatoesSeason
      description: GetRottenTomatoesSeason
      operationId: GetRottenTomatoesSeasonSeason_Get
      parameters:
      - schema:
          type: integer
          format: int64
        name: SeasonId
        in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewData'
      deprecated: false
  /RottenTomatoes/Show:
    get:
      tags:
      - rottentomatoes
      summary: Get Rotten Tomatoes reviews and scores for Show
      description: Get Rotten Tomatoes reviews and scores for Show
      operationId: GetRottenTomatoesShowShow_Get
      parameters:
      - schema:
          type: integer
          format: int64
        name: ShowId
        in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewData'
      deprecated: false
components:
  schemas:
    ReviewData:
      title: ReviewData
      properties:
        FanSummary:
          $ref: '#/components/schemas/FanSummary'
        CriticSummary:
          $ref: '#/components/schemas/CriticSummary'
        Reviews:
          type: array
          items:
            $ref: '#/components/schemas/RottenTomatoesReview'
        Ratings:
          type: array
          items:
            $ref: '#/components/schemas/RottenTomatoesRating'
      description: ReviewData
      type: object
    FanSummary:
      title: FanSummary
      properties:
        Url:
          type: string
        Score:
          $ref: '#/components/schemas/SummaryScore'
      description: FanSummary
      type: object
    SummaryScore:
      title: SummaryScore
      properties:
        Value:
          type: string
        AvgScore:
          type: string
        Count:
          type: string
        PreRelease:
          type: string
        AudienceRating:
          type: string
      description: SummaryScore
      type: object
    CriticSummary:
      title: CriticSummary
      properties:
        Url:
          type: string
        CriticRating:
          type: string
        Score:
          $ref: '#/components/schemas/SummaryScore'
        Freshness:
          $ref: '#/components/schemas/SummaryFreshness'
      description: CriticSummary
      type: object
    SummaryFreshness:
      title: SummaryFreshness
      properties:
        Value:
          type: string
        Certified:
          type: string
        Rotten:
          type: string
      description: SummaryFreshness
      type: object
    RottenTomatoesReview:
      title: RottenTomatoesReview
      properties:
        Id:
          type: string
        Url:
          type: string
        TopReview:
          type: string
        Date:
          type: string
        Quote:
          type: string
        Freshness:
          $ref: '#/components/schemas/ReviewFreshness'
        Critic:
          $ref: '#/components/schemas/Critic'
        Publication:
          $ref: '#/components/schemas/Publication'
      description: RottenTomatoesReview
      type: object
    ReviewFreshness:
      title: ReviewFreshness
      properties:
        OriginalScore:
          type: string
        Text:
          type: string
      description: ReviewFreshness
      type: object
    Critic:
      title: Critic
      properties:
        Id:
          type: string
        TopCritic:
          type: string
        Url:
          type: string
        Name:
          type: string
        Thumbnail:
          type: string
      description: Critic
      type: object
    Publication:
      title: Publication
      properties:
        Id:
          type: string
        TopPublication:
          type: string
        Name:
          type: string
      description: Publication
      type: object
    RottenTomatoesRating:
      title: RottenTomatoesRating
      properties:
        Url:
          type: string
        Score:
          $ref: '#/components/schemas/RatingScore'
        Date:
          type: string
        UserId:
          type: string
        Comment:
          type: string
      description: RottenTomatoesRating
      type: object
    RatingScore:
      title: RatingScore
      properties:
        Value:
          type: string
        Text:
          type: string
      description: RatingScore
      type: object