pl-api
    Preparing search index...

    Interface GetAccountStatusesParams

    interface GetAccountStatusesParams {
        exclude_replies?: boolean;
        language?: string;
        limit?: number;
        max_id?: string;
        min_id?: string;
        only_events?: boolean;
        only_media?: boolean;
        pinned?: boolean;
        since_id?: string;
        tagged?: string;
        with_muted?: boolean;
    }

    Hierarchy (View Summary)

    • PaginationParams
    • WithMutedParam
    • OnlyEventsParam
    • OnlyMediaParam
    • LanguageParam
      • GetAccountStatusesParams
    Index

    Properties

    exclude_replies?: boolean

    Boolean. Filter out statuses in reply to a different account.

    language?: string

    Fetch a translation in given language

    Requires features['fetchStatusesWithTranslation'].

    limit?: number

    Integer. Maximum number of results to return.

    max_id?: string

    String. All results returned will be lesser than this ID. In effect, sets an upper bound on results.

    min_id?: string

    String. Returns results immediately newer than this ID. In effect, sets a cursor at this ID and paginates forward.

    only_events?: boolean

    Boolean. Filter out statuses without events.

    Requires features['events'].

    only_media?: boolean

    Boolean. Show only statuses with media attached? Defaults to false.

    pinned?: boolean

    Boolean. Filter for pinned statuses only. Defaults to false, which includes all statuses. Pinned statuses do not receive special priority in the order of the returned results.

    since_id?: string

    String. All results returned will be greater than this ID. In effect, sets a lower bound on results.

    tagged?: string

    String. Filter for statuses using a specific hashtag.

    with_muted?: boolean

    Boolean. Also show statuses from muted users. Default to false.

    Requires features['timelinesWithMuted'].