> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /rottentomatoes/movies

> Get full Rotten Tomatoes movie details by slug or URL: Tomatometer (critics) and Popcornmeter (audience) scores, critics consensus, synopsis, genres, MPAA rating, runtime, release dates, cast and crew, where to watch and box office.

**Price:** 1 credit

**⚠️ Common errors:** 412: Movie not found (well-formed but nonexistent slug)



## OpenAPI

````yaml /openapi/movies-tv.json post /api/rottentomatoes/movies
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/rottentomatoes/movies:
    post:
      tags:
        - /rottentomatoes
      summary: /rottentomatoes/movies
      description: >-
        Get full Rotten Tomatoes movie details by slug or URL: Tomatometer
        (critics) and Popcornmeter (audience) scores, critics consensus,
        synopsis, genres, MPAA rating, runtime, release dates, cast and crew,
        where to watch and box office.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Movie not found (well-formed but nonexistent
        slug)
      operationId: __api_rottentomatoes_movies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RottentomatoesMoviesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RottentomatoesMovie'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RottentomatoesMoviesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        movie:
          type: string
          minLength: 1
      type: object
      required:
        - movie
    RottentomatoesMovie:
      properties:
        '@type':
          type: string
          default: RottentomatoesMovie
        id:
          anyOf:
            - type: string
            - type: 'null'
        rt_id:
          anyOf:
            - type: string
            - type: 'null'
        media_type:
          type: string
          default: movie
        slug:
          type: string
        url:
          type: string
        movie_title:
          anyOf:
            - type: string
            - type: 'null'
        consensus:
          anyOf:
            - type: string
            - type: 'null'
        release_year:
          anyOf:
            - type: integer
            - type: 'null'
        mpaa:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          items:
            type: string
          type: array
          default: []
        runtime:
          anyOf:
            - type: string
            - type: 'null'
        runtime_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        tomatometer:
          anyOf:
            - $ref: '#/components/schemas/RottentomatoesScore'
            - type: 'null'
        popcornmeter:
          anyOf:
            - $ref: '#/components/schemas/RottentomatoesScore'
            - type: 'null'
        directors:
          items:
            $ref: '#/components/schemas/RottentomatoesPersonRef'
          type: array
          default: []
        producers:
          items:
            $ref: '#/components/schemas/RottentomatoesPersonRef'
          type: array
          default: []
        screenwriters:
          items:
            $ref: '#/components/schemas/RottentomatoesPersonRef'
          type: array
          default: []
        cast:
          items:
            $ref: '#/components/schemas/RottentomatoesPersonRef'
          type: array
          default: []
        distributors:
          items:
            type: string
          type: array
          default: []
        production_companies:
          items:
            type: string
          type: array
          default: []
        original_language:
          anyOf:
            - type: string
            - type: 'null'
        theater_release_date:
          anyOf:
            - type: string
            - type: 'null'
        streaming_release_date:
          anyOf:
            - type: string
            - type: 'null'
        box_office_usa:
          anyOf:
            - type: string
            - type: 'null'
        sound_mix:
          items:
            type: string
          type: array
          default: []
        aspect_ratio:
          anyOf:
            - type: string
            - type: 'null'
        affiliates:
          items:
            $ref: '#/components/schemas/RottentomatoesAffiliate'
          type: array
          default: []
        showtimes_url:
          anyOf:
            - type: string
            - type: 'null'
        trailer_title:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - slug
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RottentomatoesScore:
      properties:
        '@type':
          type: string
          default: RottentomatoesScore
        score:
          anyOf:
            - type: integer
            - type: 'null'
        sentiment:
          anyOf:
            - type: string
            - type: 'null'
        average_rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        liked_count:
          anyOf:
            - type: integer
            - type: 'null'
        not_liked_count:
          anyOf:
            - type: integer
            - type: 'null'
        certified:
          type: boolean
          default: false
      type: object
    RottentomatoesPersonRef:
      properties:
        '@type':
          type: string
          default: RottentomatoesPersonRef
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        characters:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    RottentomatoesAffiliate:
      properties:
        '@type':
          type: string
          default: RottentomatoesAffiliate
        name:
          type: string
        icon:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````