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

    Interface PixivUser

    Minimal user info embedded in works, search results, and preview lists.

    Full profile data is returned by GET /v1/user/detail.

    interface PixivUser {
        account: string;
        id: number;
        isAcceptRequest?: boolean;
        isAccessBlockingUser?: boolean;
        isFollowed?: boolean;
        name: string;
        profileImageUrls: ProfileImageUrls;
    }
    Index

    Properties

    account: string

    Login account name (distinct from the display name).

    id: number

    Internal numeric user ID.

    NOTE: certain API endpoints return this as a string. The core library normalises it to number before returning it to callers.

    isAcceptRequest?: boolean

    Whether this user accepts illustration commission requests.

    isAccessBlockingUser?: boolean

    Whether this user has blocked access by the authenticated user.

    isFollowed?: boolean

    Whether the authenticated user follows this user.

    name: string

    Display name shown on the user's profile.

    profileImageUrls: ProfileImageUrls

    Set of profile image URLs at different sizes.