masto
    Preparing search index...

    Interface SearchParams

    interface SearchParams {
        accountId?: string | null;
        excludeUnreviewed?: boolean | null;
        following?: boolean | null;
        limit?: number | null;
        maxId?: string | null;
        minId?: string | null;
        offset?: number | null;
        q: string;
        resolve?: boolean | null;
        sinceId?: string | null;
        type?: (keyof SearchTypeRegistry) | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    accountId?: string | null

    If provided, statuses returned will be authored only by this account

    excludeUnreviewed?: boolean | null

    Filter out unreviewed tags? Defaults to false. Use true when trying to find trending tags.

    following?: boolean | null

    Only include accounts that the user is following. Defaults to false.

    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

    offset?: number | null

    Skip the first n results.

    q: string

    Attempt WebFinger lookup. Defaults to false.

    resolve?: boolean | null

    Attempt WebFinger look-up

    sinceId?: string | null

    Return results newer than this ID.

    type?: (keyof SearchTypeRegistry) | null

    Enum(accounts, hashtags, statuses)