Skip to main content

SeriesFeedRequest

Body for POST /series/feed: the cursor + limit of the GET, plus the provider id set to narrow the page to. It's a POST only so this list can be large (a consumer's whole owned catalog) without hitting URL limits.

cursorstring | nullnullable

Opaque cursor from a previous response's nextCursor. Omit to start from the beginning.

Default value: null
externalIdsstring[]

Narrow the page to series carrying one of these external-id mappings.

Each entry is provider:externalId — the provider token, a colon, then the id (e.g. mangabaka:12345, mangaupdates:234). Matching is OR: a series is included if it carries any listed mapping, and is returned at most once. The provider half must match exactly (lowercase, no aliases). The full set of tokens tsundoku stores is: mangabaka, mangaupdates, mal, anilist, mangadex, kitsu, anime_planet, anime_news_network, shikimori. Prefer round-tripping the provider value from a feed item's externalIds verbatim over guessing (mangaupdates:234, not mu:234). Entries without a colon are ignored. Empty ⇒ no filter (identical to the GET).

Default value: []
limitinteger,null<int32>nullable

Max items per page (default 100, capped at 500).

Possible values: >= 0

Default value: null
SeriesFeedRequest
{
"cursor": null,
"externalIds": [
"string"
],
"limit": null
}