action rawg_games_twitch_read { label: "Get streams on Twitch associated with the game, available only for business and enterprise API users." description: "" provider: rawg method: GET path: "/games/{id}/twitch" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { created: { type: "string" format: "date-time" } description: { type: "string" } external_id: { type: "integer" } id: { type: "integer" } language: { type: "string" } name: { type: "string" } published: { type: "string" format: "date-time" } thumbnail: { type: "string" format: "uri" } view_count: { type: "integer" } } } }