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

> Get critic or audience reviews of a Rotten Tomatoes TV season by show slug and season number: reviewer, publication, fresh/rotten sentiment, original score, quote and date. Filter to Top Critics or verified audience.

**Price:** 1 credit

**⚠️ Common errors:** 412: TV show or season not found



## OpenAPI

````yaml /openapi/movies-tv.json post /api/rottentomatoes/tv/reviews
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/reviews:
    post:
      tags:
        - /rottentomatoes
      summary: /rottentomatoes/tv/reviews
      description: >-
        Get critic or audience reviews of a Rotten Tomatoes TV season by show
        slug and season number: reviewer, publication, fresh/rotten sentiment,
        original score, quote and date. Filter to Top Critics or verified
        audience.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: TV show or season not found
      operationId: __api_rottentomatoes_tv_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RottentomatoesTvReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RottentomatoesReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RottentomatoesTvReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        tv:
          type: string
          minLength: 1
        season:
          type: integer
          minimum: 1
        review_type:
          $ref: '#/components/schemas/RottentomatoesReviewType'
          default: critic
        top_critics:
          type: boolean
          default: false
        verified:
          type: boolean
          default: false
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - tv
        - season
        - count
    RottentomatoesReview:
      properties:
        '@type':
          type: string
          default: RottentomatoesReview
        id:
          type: string
        review_type:
          type: string
        text:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        author_url:
          anyOf:
            - type: string
            - type: 'null'
        author_image:
          anyOf:
            - type: string
            - type: 'null'
        publication:
          anyOf:
            - type: string
            - type: 'null'
        sentiment:
          anyOf:
            - type: string
            - type: 'null'
        is_fresh:
          anyOf:
            - type: boolean
            - type: 'null'
        original_score:
          anyOf:
            - type: string
            - type: 'null'
        is_top_critic:
          type: boolean
          default: false
        star_rating:
          anyOf:
            - type: integer
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        has_spoilers:
          type: boolean
          default: false
        review_url:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - review_type
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RottentomatoesReviewType:
      type: string
      enum:
        - critic
        - audience
    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

````