The Movie Database · JSON Structure

Tmdb Api Movie Keywords Response Structure

TMDB Movies — Keywords (200 payload).

Type: object Properties: 2
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

MovieKeywordsResponse is a JSON Structure definition published by The Movie Database, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id keywords

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-structure/tmdb-api-movie-keywords-response-structure.json",
  "name": "MovieKeywordsResponse",
  "description": "TMDB Movies \u2014 Keywords (200 payload).",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "examples": [
        550
      ],
      "default": 0
    },
    "keywords": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "int32",
            "examples": [
              818
            ],
            "default": 0
          },
          "name": {
            "type": "string",
            "examples": [
              "based on novel or book"
            ]
          }
        }
      }
    }
  }
}