@book000/pixivts - v0.61.1
    Preparing search index...

    Interface ParsedNextUrl

    Typed cursor parameters extracted from a pixiv next_url.

    Different endpoints use different cursor fields; only the fields present in the URL will be defined.

    Field Endpoint(s)
    maxBookmarkId GET /v1/user/bookmarks/illust
    maxBookmarkIdForRecommend GET /v1/illust/recommended, GET /v1/novel/recommended
    minBookmarkIdForRecentIllust GET /v1/illust/recommended
    offset search, ranking, recommended, user lists, …
    lastOrder GET /v2/novel/series
    interface ParsedNextUrl {
        lastOrder?: number;
        maxBookmarkId?: number;
        maxBookmarkIdForRecommend?: number;
        minBookmarkIdForRecentIllust?: number;
        offset?: number;
    }
    Index

    Properties

    lastOrder?: number

    Cursor for GET /v2/novel/series.

    maxBookmarkId?: number

    Cursor for GET /v1/user/bookmarks/illust.

    maxBookmarkIdForRecommend?: number

    Cursor for GET /v1/illust/recommended and GET /v1/novel/recommended.

    minBookmarkIdForRecentIllust?: number

    Secondary cursor for GET /v1/illust/recommended.

    offset?: number

    Zero-based offset for general list endpoints.