action britbox_get_page { label: "getPage" description: "Returns a page with the specified id.\n\nIf targeting the search page you must url encode the search term as a parameter\nusing the `q` key. For example if your browser path looks like `/search?q=the`\nthen what you pass to this endpoint would look like `/page?path=/search%3Fq%3Dthe`.\n" provider: britbox method: GET path: "/page" encoding: json input: { type: "object" properties: { item_detail_expand: { type: "string" enum: ["all", "children", "ancestors"] } item_detail_select_season: { type: "string" enum: ["first", "latest"] } list_page_size: { type: "integer" format: "int32" } list_page_size_large: { type: "integer" format: "int32" } max_list_prefetch: { type: "integer" format: "int32" } max_rating: { type: "string" } path: { type: "string" } text_entry_format: { type: "string" enum: ["markdown", "html"] } } required: ["path"] additionalProperties: false } output: { type: "object" } }