masto
    Preparing search index...

    Interface ListAccountStatusesParams

    interface ListAccountStatusesParams {
        excludeReblogs?: boolean | null;
        excludeReplies?: boolean | null;
        limit?: number | null;
        maxId?: string | null;
        minId?: string | null;
        onlyMedia?: boolean | null;
        pinned?: boolean | null;
        sinceId?: string | null;
        tagged?: string | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    excludeReblogs?: boolean | null

    Skip statuses that are boosts of other statuses

    excludeReplies?: boolean | null

    Skip statuses that reply to other statuses

    limit?: number | null

    Maximum number of results to return per page. Defaults to 40. NOTE: Pagination is done with the Link header from the response.

    maxId?: string | null

    Return results older than this ID.

    minId?: string | null

    Get a list of items with ID greater than this value excluding this ID

    onlyMedia?: boolean | null

    Only return statuses that have media attachments

    pinned?: boolean | null

    Only return statuses that have been pinned

    sinceId?: string | null

    Return results newer than this ID.

    tagged?: string | null

    Only return statuses using a specific hashtag