listGenerations
List your generation history across the API and the web app - filter by type, source (api|web|all), text search, and date range. Returns {items, page, page_size, has_more}; keep paging while has_more is true. API-originated results expire after 7 days - download anything you want to retain. For an in-flight job's status use getApiJob instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Which kind of generation to list | |
| search | No | Free-text search. Every whitespace-separated term must match (case-insensitive substring) the item's tags or one of its text fields (prompt, hints, style, label, ...), so "dwarf axe" narrows to items matching both. | |
| source | No | Which surface the items were generated from: api (your API/MCP generations, last 7 days only), web (your Ludo web studio generations, no time limit), or all (default, both) | all |
| date_to | No | Only return items generated at or before this time (unix seconds) | |
| date_from | No | Only return items generated at or after this time (unix seconds) | |
| page_size | No | Items per page (1-100) | |
| request_id | No | Only return items tagged with this request_id when you generated them | |
| page_number | No | 1-based page number |