pl-api
    Preparing search index...

    Interface HashtagTimelineParams

    interface HashtagTimelineParams {
        all?: string[];
        any?: string[];
        language?: string;
        limit?: number;
        local?: boolean;
        max_id?: string;
        min_id?: string;
        none?: string[];
        only_events?: boolean;
        only_media?: boolean;
        remote?: boolean;
        since_id?: string;
        with_muted?: boolean;
    }

    Hierarchy (View Summary)

    • PaginationParams
    • WithMutedParam
    • OnlyEventsParam
    • OnlyMediaParam
    • LanguageParam
      • HashtagTimelineParams
    Index

    Properties

    all?: string[]

    Array of String. Return statuses that contain all of these additional tags.

    any?: string[]

    Array of String. Return statuses that contain any of these additional tags.

    language?: string

    Fetch a translation in given language

    Requires features['fetchStatusesWithTranslation'].

    limit?: number

    Integer. Maximum number of results to return.

    local?: boolean

    Boolean. Show only local statuses? Defaults to false.

    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.

    none?: string[]

    Array of String. Return statuses that contain none of these additional tags.

    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.

    remote?: boolean

    Boolean. Show only remote statuses? Defaults to false.

    since_id?: string

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

    with_muted?: boolean

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

    Requires features['timelinesWithMuted'].