The Movie Database · JSON Structure

Tmdb Api Search Company Response Structure

TMDB Search — Company (200 payload).

Type: object Properties: 4
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

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

Properties

page results total_pages total_results

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-search-company-response-structure.json",
  "name": "SearchCompanyResponse",
  "description": "TMDB Search \u2014 Company (200 payload).",
  "type": "object",
  "properties": {
    "page": {
      "type": "int32",
      "examples": [
        1
      ],
      "default": 0
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "int32",
            "examples": [
              3268
            ],
            "default": 0
          },
          "logo_path": {
            "type": "string",
            "examples": [
              "/tuomPhY2UtuPTqqFnKMVHvSb724.png"
            ]
          },
          "name": {
            "type": "string",
            "examples": [
              "HBO"
            ]
          },
          "origin_country": {
            "type": "string",
            "examples": [
              "US"
            ]
          }
        }
      }
    },
    "total_pages": {
      "type": "int32",
      "examples": [
        2
      ],
      "default": 0
    },
    "total_results": {
      "type": "int32",
      "examples": [
        22
      ],
      "default": 0
    }
  }
}