The Movie Database · JSON Structure

Tmdb Api Genre Movie List Response Structure

TMDB Genres — Movie List (200 payload).

Type: object Properties: 1
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

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

Properties

genres

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-genre-movie-list-response-structure.json",
  "name": "GenreMovieListResponse",
  "description": "TMDB Genres \u2014 Movie List (200 payload).",
  "type": "object",
  "properties": {
    "genres": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "int32",
            "examples": [
              28
            ],
            "default": 0
          },
          "name": {
            "type": "string",
            "examples": [
              "Action"
            ]
          }
        }
      }
    }
  }
}