Video Games

Video GamesCopied!

Description: Shows information about video games, including reviews, platforms, and availability.

API Response Structure:

{
  "items": [
    {
      "name": "Game Title",
      "genre": "Action/Adventure",
      "hasImage": true,
      "details": {
        "developer": "Studio Name",
        "publisher": "Publisher Name",
        "releaseDate": "2023-08-15",
        "platforms": ["PS5", "Xbox Series X", "PC"],
        "rating": "ESRB T"
      },
      "scores": {
        "critic": 90,
        "user": 8.5,
        "totalReviews": 1500
      },
      "features": [
        "Single Player",
        "Online Multiplayer",
        "4K Support"
      ],
      "pricing": {
        "standard": "$59.99",
        "deluxe": "$79.99",
        "availability": "Pre-order"
      }
    }
  ],
  "type": "videoGames"
}

Fields:

  • items (array): Game listings

    • name (string): Game title

    • genre (string): Game category

    • hasImage (boolean): Game image/cover

    • details (object): Game information

    • scores (object): Review scores

    • features (array): Game features

    • pricing (object): Price options

  • type (string): Always "videoGames"