Trailers

Description: Displays movie, TV show, or game trailers related to the search query.

API Response Structure:

{
  "trailers": [
    {
      "title": "Trailer Title",
      "media": {
        "url": "https://example.com/trailer.mp4",
        "thumbnail": "https://example.com/thumb.jpg",
        "duration": "2:30",
        "quality": ["HD", "4K"],
        "type": "Official/Teaser/Behind the Scenes"
      },
      "content": {
        "release": {
          "date": "2023-08-15",
          "type": "World Premiere/TV Spot"
        },
        "description": "Trailer description...",
        "language": "English",
        "subtitles": ["Spanish", "French"]
      },
      "metrics": {
        "views": "1M+",
        "likes": "100K",
        "comments": "10K"
      },
      "production": {
        "studio": "Studio Name",
        "director": "Director Name",
        "releaseDate": "2023-12-25"
      }
    }
  ],
  "filters": {
    "type": ["Official", "Teaser"],
    "quality": ["HD", "4K"],
    "language": ["English", "Spanish"]
  },
  "type": "trailers"
}

Fields:

  • trailers (array): Trailer listings

    • title (string): Trailer title

    • media (object): Video information

    • content (object): Content details

    • metrics (object): Engagement stats

    • production (object): Production info

  • filters (object): Search filters

  • type (string): Always "trailers"