masto
    Preparing search index...

    Interface Tag

    Represents a hashtag used within the content of a status.

    interface Tag {
        featuring?: boolean | null;
        following?: boolean | null;
        history?: mastodon.v1.TagHistory[] | null;
        id: string;
        name: string;
        url: string;
    }
    Index

    Properties

    featuring?: boolean | null

    Whether the current token’s authorized user is featuring this tag on their profile.

    following?: boolean | null

    Whether the current token’s authorized user is following this tag.

    history?: mastodon.v1.TagHistory[] | null

    Usage statistics for given days.

    id: string

    ID of the hashtag in the database. Useful for constructing URLs for the moderation tools & Admin API.

    name: string

    The value of the hashtag after the # sign.

    url: string

    A link to the hashtag on the instance.