List a kit's history ledger
list_kit_historyList the full event history of a kit—creation, saves, and brand applications—to see if it was ever actually used. Metadata only, paginated by opaque cursor.
Instructions
Everything that has happened to one of your saved kits, newest first: its creation, every save, and every time it was applied to a brand. Wider than list_kit_versions, which only sees the events that minted a version — an apply-to-brand event appears here and nowhere else, so this is the tool that answers whether a kit was ever actually used rather than merely edited. Each row carries an event id; pass it to get_kit_history_event for the full kit as it stood at that moment. Metadata only, so no tokens come back here. Only kits saved under an API key have a ledger: a curated catalog kit is shipped rather than edited, and asking for one answers 404 rather than an empty list, because you do not own it. Paged by an OPAQUE cursor, not by a number — hand meta.nextCursor back unchanged rather than constructing one, and a cursor this endpoint did not issue is rejected rather than silently restarting from the top. Free to call, needs kits:read.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Permanent kit id or slug of a kit you own. | |
| limit | No | Rows per page, newest first. Default 20, max 50. | |
| cursor | No | Next page. meta.nextCursor from the previous response, passed back byte for byte. Opaque: it is not a number, a date or an id you can build. |