Mastodon
  • What is Mastodon?
  • Using Mastodon
    • Signing up for an account
    • Setting up your profile
    • Posting to your profile
    • Using the network features
    • Quoting other posts
    • Dealing with unwanted content
    • Promoting yourself and others
    • Set your preferences
    • More settings
    • Using Mastodon externally
    • Moving or leaving accounts
    • Official iOS and Android apps
    • Running your own server
  • Running Mastodon
    • Preparing your machine
    • Installing from source
    • Configuring your environment
    • Configuring full-text search
    • Installing optional features
      • Object storage
      • Onion services
      • Captcha
      • Single Sign On
    • Setting up your new instance
    • Using the admin CLI
    • Upgrading to a new release
    • Backing up your server
    • Migrating to a new machine
    • Scaling up your server
    • Moderation actions
    • Troubleshooting errors
      • Database index corruption
    • Webhooks
    • Roles
  • Developing Mastodon apps
    • Getting started with the API
    • Playing with public data
    • Obtaining client app access
    • Logging in with an account
    • Libraries and implementations
    • Implementing quote posts
  • Contributing to Mastodon
    • Technical overview
    • Setting up a dev environment
    • Code structure
    • Routes
    • Security issues and responsible disclosure
    • Frontend guide
      • Components
      • State management
      • CSS and styling
      • Creating themes
      • Design tokens reference
  • Spec compliance
    • ActivityPub
    • WebFinger
    • Security
    • Microformats
    • OAuth
    • Bearcaps
  • REST API
    • Datetime formats
    • Guidelines and best practices
    • OAuth Tokens
    • OAuth Scopes
    • Rate limits
  • API Methods
    • accounts
      • blocks
      • bookmarks
      • domain_blocks
      • endorsements
      • favourites
      • featured_tags
      • filters
      • follow_requests
      • followed_tags
      • mutes
      • preferences
      • reports
      • suggestions
      • tags
    • admin
      • accounts
      • canonical_email_blocks
      • dimensions
      • domain_allows
      • domain_blocks
      • email_domain_blocks
      • ip_blocks
      • measures
      • reports
      • retention
      • trends
    • Annual reports
    • apps
      • emails
      • oauth
    • async_refreshes
    • collections
    • grouped notifications
    • health
    • instance
      • announcements
      • custom_emojis
      • directory
      • trends
    • notifications
      • push
    • oembed
    • profile
    • proofs
    • search
    • statuses
      • media
      • polls
      • scheduled_statuses
    • timelines
      • conversations
      • lists
      • markers
      • streaming
  • API Entities
    • Account
    • AccountWarning
    • Admin::Account
    • Admin::CanonicalEmailBlock
    • Admin::Cohort
    • Admin::Dimension
    • Admin::DomainAllow
    • Admin::DomainBlock
    • Admin::EmailDomainBlock
    • Admin::Ip
    • Admin::IpBlock
    • Admin::Measure
    • Admin::Report
    • Announcement
    • AnnualReport
    • Appeal
    • Application
    • AsyncRefresh
    • Collection
    • CollectionItem
    • CollectionWithAccounts
    • Context
    • Conversation
    • CustomEmoji
    • DomainBlock
    • Error
    • ExtendedDescription
    • FamiliarFollowers
    • FeatureApproval
    • FeaturedTag
    • Filter
    • FilterKeyword
    • FilterResult
    • FilterStatus
    • IdentityProof
    • Instance
    • List
    • Marker
    • MediaAttachment
    • Notification
    • NotificationFallback
    • NotificationPolicy
    • NotificationRequest
    • Poll
    • Preferences
    • PreviewCard
    • PreviewCardAuthor
    • PrivacyPolicy
    • Profile
    • Quote
    • QuoteApproval
    • Reaction
    • Relationship
    • RelationshipSeveranceEvent
    • Report
    • Role
    • Rule
    • ScheduledStatus
    • Search
    • ShallowQuote
    • ShallowTag
    • Status
    • StatusEdit
    • StatusSource
    • Suggestion
    • Tag
    • TermsOfService
    • Token
    • Translation
    • V1::Filter
    • V1::Instance
    • V1::NotificationPolicy
    • WebPushSubscription

AnnualReport

Represents a summary of a user's activity during a given year.

    • Example
    • Attributes
      • year
      • data
      • schema_version
      • share_url
      • account_id
    • WrappedAnnualReports entity
      • Example
      • annual_reports
      • accounts
      • statuses
    • See also

Example

{
    "year": 2025,
    "data": {
    "archetype": "oracle",
    "time_series": [
        {
        "month": 12,
        "statuses": 7123,
        "followers": 48
        }
    ],
    "top_hashtags": [
        {
        "name": "Mastodon",
        "count": 12
        }
    ],
    "top_statuses": {
        "by_reblogs": "114348347829110933",
        "by_replies": null,
        "by_favourites": null
    }
    },
    "schema_version": 2,
    "share_url": "https://example.com/@Foobar/wrapstodon/2025/7fa0231c0f206390",
    "account_id": "55911"
}

Attributes

year

Description: The year this report is from.
Type: Integer
Version history:
4.3.0 - added

data

Description: The raw data contained in the report. The schema of that data is dependent on the value of schema_version.
Type: Hash
Version history:
4.3.0 - added
4.6.0 - added schema version 2

data[archetype]

Description: Archetype the user corresponds to. This is meant to represent a playful and very coarse overview of the user’s posting habits over the year.
Type: String (Enumerable, oneOf)
lurker = TODO
booster = TODO
pollster = TODO
replier = TODO
oracle = TODO
Version history:
4.3.0 - added

data[type_distribution]

Description: Provides a breakdown of the user’s posts statistics over the year. Only available in schema version 1.
Type: Hash
Version history:
4.3.0 - added
4.6.0 - removed in schema version 2

data[top_statuses]

Description: Provides a breakdown of the user’s most-interacted statuses by type of interaction (reblogs, favourites, replies) over the year.
Type: Hash
Version history:
4.3.0 - added
4.6.0 - changed in schema version 2 to only include by_reblogs, and allow “Quiet public” posts to appear

`data[most_used_apps]

Description: Provides a breakdown of the apps the user used the most for posting statuses over the year. Only available in schema version 1.
Type: Array of Hash
Version history:
4.3.0 - added
4.6.0 - removed in schema version 2

`data[commonly_interacted_with_accounts]

Description: Provides a breakdown of the accounts the user have the most frequently replied to over the year. Only available in schema version 1.
Type: Array of Hash
Version history:
4.3.0 - added
4.6.0 - removed in schema version 2

`data[time_series]

Description: Provides a breakdown of new statuses, follows and followers per month.
Type: Array of Hash
Version history:
4.3.0 - added
4.6.0 - changed to remove following in schema version 2

`data[top_hashtags]

Description: Provides a breakdown of the user’s most frequently used hashtags over the year.
Type: Array of Hash
Version history:
4.3.0 - added
4.6.0 - changed to be limited to a single hashtag in schema version 2

`data[most_reblogged_accounts]

Description: Provides a breakdown of the accounts the user has reblogged the most over the year. Only available in schema version 1.
Type: Array of Hash
Version history:
4.3.0 - added
4.6.0 - removed in schema version 2

`data[percentiles]

Description: Which percentile of the most prolific posters on the same server the user is in. Only available in schema version 1.
Type: Float
Version history:
4.3.0 - added
4.6.0 - removed in schema version 2

schema_version

Description: The schema version of the report, defines how to interpret data.
Type: Integer
Version history:
4.3.0 - added
4.6.0 - added schema version 2

share_url

Description: An optional link to a shareable version of the report.
Type: nullable String (URL)
Version history:
4.6.0 - added

account_id

Description: The account ID the report is about.
Type: String (cast from an integer but not guaranteed to be a number)
Version history:
4.6.0 - added

WrappedAnnualReports entity

One or more AnnualReport wrapped in an object with relevant Account and Status entities.

Example

{
  "annual_reports": [
    {
      "year": 2025,
      "data": {
        "archetype": "oracle",
        "time_series": [
          {
            "month": 12,
            "statuses": 7123,
            "followers": 48
          }
        ],
        "top_hashtags": [
          {
            "name": "Mastodon",
            "count": 12
          }
        ],
        "top_statuses": {
          "by_reblogs": "114348347829110933",
          "by_replies": null,
          "by_favourites": null
        }
      },
      "schema_version": 2,
      "share_url": "https://example.com/@Foobar/wrapstodon/2025/7fa0231c0f206390",
      "account_id": "55911"
    }
  ],
  "accounts": [
    /* Relevant Account entities */
  ],
  "statuses": [
    /* Relevant Status entities */
  ]
}

annual_reports

Description: Full AnnualReport entities for the reports.
Type: Array of AnnualReport
Version history:
4.3.0 - added

accounts

Description: Full Account entities for the accounts mentioned in the reports.
Type: Array of Account
Version history:
4.3.0 - added

statuses

Description: Full Status entities for the statuses mentioned in the reports.
Type: Array of Status
Version history:
4.3.0 - added

See also

Annual reports API methods
app/serializers/rest/annual_report_serializer.rb

Last updated June 2, 2026 · Improve this page

Sponsored by

Dotcom-Monitor LoadView Stephen Tures Swayable SponsorMotion

Join Mastodon · Blog ·

View source · CC BY-SA 4.0 · Imprint