> ## 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/tv

> Get full Rotten Tomatoes TV show details by slug or URL: average Tomatometer (critics) and Popcornmeter (audience) scores, critics consensus, synopsis, genres, TV rating, network, seasons list with per-season scores, cast and crew and where to watch.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/movies-tv.json post /api/rottentomatoes/tv
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/tv:
    post:
      tags:
        - /rottentomatoes
      summary: /rottentomatoes/tv
      description: >-
        Get full Rotten Tomatoes TV show details by slug or URL: average
        Tomatometer (critics) and Popcornmeter (audience) scores, critics
        consensus, synopsis, genres, TV rating, network, seasons list with
        per-season scores, cast and crew and where to watch.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: TV show not found (well-formed but
        nonexistent slug)
      operationId: __api_rottentomatoes_tv_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RottentomatoesTvPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RottentomatoesTvShow'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RottentomatoesTvPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        tv:
          type: string
          minLength: 1
      type: object
      required:
        - tv
    RottentomatoesTvShow:
      properties:
        '@type':
          type: string
          default: RottentomatoesTvShow
        id:
          anyOf:
            - type: string
            - type: 'null'
        rt_id:
          anyOf:
            - type: string
            - type: 'null'
        media_type:
          type: string
          default: tv
        slug:
          type: string
        url:
          type: string
        show_title:
          anyOf:
            - type: string
            - type: 'null'
        consensus:
          anyOf:
            - type: string
            - type: 'null'
        release_year:
          anyOf:
            - type: integer
            - type: 'null'
        tv_rating:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        tomatometer:
          anyOf:
            - $ref: '#/components/schemas/RottentomatoesScore'
            - type: 'null'
        popcornmeter:
          anyOf:
            - $ref: '#/components/schemas/RottentomatoesScore'
            - type: 'null'
        network:
          anyOf:
            - type: string
            - type: 'null'
        creators:
          items:
            $ref: '#/components/schemas/RottentomatoesPersonRef'
          type: array
          default: []
        executive_producers:
          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: []
        original_language:
          anyOf:
            - type: string
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        seasons:
          items:
            $ref: '#/components/schemas/RottentomatoesSeasonSummary'
          type: array
          default: []
        affiliates:
          items:
            $ref: '#/components/schemas/RottentomatoesAffiliate'
          type: array
          default: []
        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
    RottentomatoesSeasonSummary:
      properties:
        '@type':
          type: string
          default: RottentomatoesSeasonSummary
        season_number:
          anyOf:
            - type: integer
            - type: 'null'
        season_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        score:
          anyOf:
            - type: integer
            - type: 'null'
        certified:
          type: boolean
          default: false
        air_date:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - url
    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

````