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

> Get a Rotten Tomatoes critic profile by slug or URL: name, photo, Top Critic status, biography, publications, follower counts and their reviews with the reviewed titles and scores.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/movies-tv.json post /api/rottentomatoes/critics
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/critics:
    post:
      tags:
        - /rottentomatoes
      summary: /rottentomatoes/critics
      description: >-
        Get a Rotten Tomatoes critic profile by slug or URL: name, photo, Top
        Critic status, biography, publications, follower counts and their
        reviews with the reviewed titles and scores.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Critic not found (well-formed but nonexistent
        slug)
      operationId: __api_rottentomatoes_critics_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RottentomatoesCriticsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RottentomatoesCritic'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RottentomatoesCriticsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        critic:
          type: string
          minLength: 1
        review_type:
          anyOf:
            - $ref: '#/components/schemas/RottentomatoesCriticMediaType'
            - type: 'null'
        review_count:
          type: integer
          maximum: 1000
          minimum: 1
          default: 20
      type: object
      required:
        - critic
    RottentomatoesCritic:
      properties:
        '@type':
          type: string
          default: RottentomatoesCritic
        id:
          anyOf:
            - type: string
            - type: 'null'
        media_type:
          type: string
          default: critic
        slug:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_top_critic:
          type: boolean
          default: false
        biography:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        follower_count:
          anyOf:
            - type: integer
            - type: 'null'
        following_count:
          anyOf:
            - type: integer
            - type: 'null'
        publications:
          items:
            type: string
          type: array
          default: []
        critics_groups:
          items:
            type: string
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/RottentomatoesCriticReview'
          type: array
          default: []
      type: object
      required:
        - slug
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RottentomatoesCriticMediaType:
      type: string
      enum:
        - movie
        - tv
    RottentomatoesCriticReview:
      properties:
        '@type':
          type: string
          default: RottentomatoesCriticReview
        id:
          type: string
        sentiment:
          anyOf:
            - type: string
            - type: 'null'
        is_fresh:
          anyOf:
            - type: boolean
            - type: 'null'
        is_top_review:
          type: boolean
          default: false
        text:
          anyOf:
            - type: string
            - type: 'null'
        original_score:
          anyOf:
            - type: string
            - type: 'null'
        publication:
          anyOf:
            - type: string
            - type: 'null'
        review_url:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        reviewed_title:
          anyOf:
            - $ref: '#/components/schemas/RottentomatoesCriticReviewedTitle'
            - type: 'null'
      type: object
      required:
        - id
    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
    RottentomatoesCriticReviewedTitle:
      properties:
        '@type':
          type: string
          default: RottentomatoesCriticReviewedTitle
        work_title:
          anyOf:
            - type: string
            - type: 'null'
        media_type:
          anyOf:
            - type: string
            - type: 'null'
        slug:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        release_year:
          anyOf:
            - type: integer
            - type: 'null'
        tomatometer:
          anyOf:
            - type: integer
            - type: 'null'
        popcornmeter:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````