action pandascore_get_videogames_videogame_id_or_slug { label: "Get a videogame" description: "Get a single videogame by ID or by slug" provider: pandascore method: GET path: "/videogames/{videogame_id_or_slug}" encoding: json input: { type: "object" properties: { videogame_id_or_slug: { description: "A videogame ID or slug" type: "object" } } required: ["videogame_id_or_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }