Read one category's recipes
browse_recipesBrowse recipe categories page by page to view each recipe's ID, difficulty, and total time, with pagination to navigate the full listing.
Instructions
Read the recipes of one Supertoinette category, page by page. The category is a number and a name together, taken from list_categories or from the 'tags' of a recipe, and never assembled by hand. Each row carries the identifier get_recipe reads a recipe with, plus the difficulty and the total time the site prints beside it. The site publishes no total, so 'last_page' says how far the listing runs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Which page to read, 1 by default. 'last_page' says how far the listing runs. | |
| limit | No | Rows to render, 20 by default. The site serves at most 30 to a page, and 'rows_published' always states what the page held. | |
| category | Yes | The category to read, as a number and a name together, such as '107/recettes-desserts'. Take one from list_categories or from a recipe's tags. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page these rows were read from. | |
| page | Yes | The page these rows were read from. | |
| notes | Yes | ||
| title | Yes | The site's own heading for the category. | |
| source | Yes | ||
| results | Yes | ||
| category | Yes | The category that was read. | |
| last_page | Yes | The highest page the site links to from this one. | |
| result_count | Yes | Rows rendered here. | |
| rows_published | Yes | Rows the page held, before any were rendered. | |
| total_available | Yes | Supertoinette prints no total on a category page, so there is none to report. |