mentions_api

Module Group: Accounts
Parsing Order: 350
Database Size: 3.640 GB

The mentions_api tracks when accounts are mentioned (@username) in posts and comments.


Configuration

{
   "id": "mentions_api",
   "group_id": "accounts",
   "parsing_order": 350,
   "required_modules": ["chain_api", "posts_api"],
   "parse_reversible": true,
   "available_events": ["onMentionAccount", "onResetMentions"],
   "event_handlers": [
      "chain_api.onRemovePost",
      "posts_api.onSyncPost"
   ]
}

Endpoints

getConfig

Returns this module's active configuration.

Endpoint

/mentions_api/getConfig

getMentions

Returns posts/comments where an account was mentioned within a time range.

Endpoint

/mentions_api/getMentions/:account/:fromTime-:toTime/:limit?/:offset?

Example

/mentions_api/getMentions/steemchiller/1767000000-1767640000/10

Parameters

Name Type Optional Default Description
:account string No - Account to search for mentions
:fromTime int No - Start time (Unix timestamp)
:toTime int No - End time (Unix timestamp)
:limit int Yes 100 Maximum results
:offset int Yes 0 Result offset

Example Response:

{
   "code": 0,
   "result": {
      "cols": {
         "time": 0,
         "author_status": 1,
         "link_status": 2,
         "is_comment": 3,
         "author": 4,
         "permlink": 5,
         "title": 6
      },
      "rows": [
         [1767005124, 0, 0, 0, "gondalbiya", "sketching-tutorial-powerpuff-girls...", "Sketching Tutorial : Powerpuff Girls Rockin' Trio"],
         [1767009603, 0, 0, 0, "whalesreport", "whales-sp-report-28-12-2025", "Daily Top 100 SP Increase Report"],
         [1767028701, 0, 0, 0, "shy-bot", "boc-daily-activity-report-or-28-december-2025", "Daily Activity Report | 28 December 2025"],
         [1767046062, 0, 0, 0, "steemwatcher.com", "steemwatcher-portal-blacklisted-users...", "SteemWatcher Portal || BlackListed Users Weekly Update"],
         [1767063627, 0, 0, 0, "upvu.proxy", "2025-12-30-daily-proxy", "[2025-12-30] Daily Proxy Report"],
         [1767089325, 0, 0, 0, "steemx.org", "steemx-development-update...", "SteemX Development Update: Introducing the SteemX Account Watcher"],
         [1767099150, 0, 0, 0, "ulfatulrahmah", "my-top-picks-or-2-unique-authors...", "MY TOP PICKS | 2 UNIQUE AUTHORS TO BE SUPPORTED"],
         [1767115803, 0, 0, 0, "m-fdo", "weekly-contest-50...", "Weekly Contest 50 || The Diary Game"],
         [1767118728, 0, 0, 0, "shy-bot", "boc-daily-activity-report-or-29-december-2025", "Daily Activity Report | 29 December 2025"],
         [1767150027, 0, 0, 0, "upvu.proxy", "2025-12-31-daily-proxy", "[2025-12-31] Daily Proxy Report"]
      ]
   }
}

Column Definitions:

Column Description
time When the mention was made (Unix timestamp)
author_status Author account status (0 = normal)
link_status Post/comment status (0 = normal)
is_comment 0 = root post, 1 = comment
author Author of the mentioning post
permlink Permlink of the post/comment
title Title of the post

Recent @steemchiller Mentions:

Author Post Title
whalesreport Daily Top 100 SP Increase Report
shy-bot Daily Activity Report
steemwatcher.com BlackListed Users Weekly Update
steemx.org SteemX Development Update
upvu.proxy Daily Proxy Report

Back to Main Index