For the complete documentation index, see llms.txt. This page is also available as Markdown.

Metacritic

Get Metacritic Movie information.

get

Returns Metacritic Movie information by Entertainment Movie ID.

Path parameters
Idinteger · int64Required

Required ID of Entertainment Movie.

Header parameters
Acceptstring · enumRequired

Accept Header

Possible values:
Responses
200

Success

application/json

MetacriticMovieResponse

get/Metacritic/Movie/{Id}
GET /Metacritic/Movie/{Id} HTTP/1.1
Host: api.origin.fabricdata.com
Accept: application/json
200

Success

{
  "response": {
    "Product": {
      "Url": "text",
      "Title": "text",
      "Year": 1,
      "ReleaseDate": "2026-01-01T00:00:00.000Z",
      "Metascore": {
        "Score": 1,
        "ReviewCount": 1,
        "PositiveCount": 1,
        "NeutralCount": 1,
        "NegativeCount": 1
      },
      "Userscore": {
        "Score": 1,
        "RatingCount": 1,
        "PositiveCount": 1,
        "NeutralCount": 1,
        "NegativeCount": 1
      },
      "Reviews": {
        "Review": [
          {
            "Date": "2026-01-01T00:00:00.000Z",
            "Url": "text",
            "Quote": "text",
            "Score": 1,
            "Publication": {
              "Name": "text"
            },
            "Critic": {
              "Name": "text"
            }
          }
        ]
      }
    }
  }
}

Get Metacritic TV information.

get

Returns Metacritic TV information by Entertainment Show ID.

Path parameters
Idinteger · int64Required

Required ID of Entertainment Show.

Query parameters
SeasonNumbernumber · doubleOptional

Number of season.

Header parameters
Acceptstring · enumRequired

Accept Header

Possible values:
Responses
200

Success

application/json

MetacriticTvResponse

get/Metacritic/TV/{Id}
GET /Metacritic/TV/{Id} HTTP/1.1
Host: api.origin.fabricdata.com
Accept: application/json
200

Success

{
  "response": {
    "Product": {
      "Url": "text",
      "Title": "text",
      "StartDate": "2026-01-01T00:00:00.000Z",
      "Metascore": {
        "Score": 1,
        "ReviewCount": 1,
        "PositiveCount": 1,
        "NeutralCount": 1,
        "NegativeCount": 1
      },
      "Userscore": {
        "Score": 1,
        "RatingCount": 1,
        "PositiveCount": 1,
        "NeutralCount": 1,
        "NegativeCount": 1
      },
      "Reviews": {
        "Review": [
          {
            "Date": "2026-01-01T00:00:00.000Z",
            "Url": "text",
            "Quote": "text",
            "Score": 1,
            "Publication": {
              "Name": "text"
            },
            "Critic": {
              "Name": "text"
            }
          }
        ]
      }
    }
  }
}

Last updated