List JsonFabrica sequences
jsonfabrica_list_sequencesList sequences to discover their names when you don't know one. Returns a paginated page with items and nextCursor for browsing.
Instructions
Calls GET /v1/sequences. Returns a page of sequences ({ items, nextCursor }). Use this to discover sequence names when you don't already know one; if you know the exact name, call jsonfabrica_get_sequence directly instead. Read-only, no side effects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of sequences to return in this page. Optional; defaults to 20 when omitted. Values <= 0 or > 100 are not clamped — the request is rejected with a 400 validation error. | |
| cursor | No | Opaque pagination cursor from a previous response's `nextCursor`. Optional; omit to fetch the first page. Not a page number or offset you construct yourself. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | Page of matching sequences. | |
| nextCursor | No | Pass to `cursor` on the next call; absent on the last page. |