FRP LogoFuture Reportbot

Stats

Developer Info

This endpoint is cached for 5 min

🛠 Endpoint

GET https://api.fbot.cc/v1/stats

Example Request:

GET https://api.fbot.cc/v1/stats
Content-Type: application/json

🚀 Response

Upon successfully retrieving the queue status, the API will return a 200 OK response with the following structure:

{
  "success": true,
  "message": "Successfully fetched status for report",
  "data": {
    "queue": {
      "total": 345,
      "pending": 1,
      "completed": 341,
      "today": 21,
      "this_week": 171,
      "this_month": 308
    },
    "reports": {
      "total": 6723,
      "success": 5670,
      "failed": 426,
      "repeated": 0
    },
    "bans": {
      "total": 93,
      "vac": 40,
      "game": 58,
      "community": 17
    },
    "accounts": {
      "total": 15201
    }
  },
  "expires": 1727609700012
}

Response Fields

FieldTypeDescription
successbooleanIndicates whether the request was successful (true or false).
messagestringA message indicating the result of the request.
data.queue.totalnumberThe total number of reports in the queue.
data.queue.pendingnumberThe number of reports pending in the queue.
data.queue.completednumberThe number of reports completed from the queue.
data.queue.todaynumberThe number of reports completed today.
data.queue.this_weeknumberThe number of reports completed this week.
data.queue.this_monthnumberThe number of reports completed this month.
data.reports.totalnumberThe total number of reports processed.
data.reports.successnumberThe number of successful reports.
data.reports.failednumberThe number of failed reports.
data.reports.repeatednumberThe number of repeated reports.
data.bans.totalnumberThe total number of bans issued.
data.bans.vacnumberThe number of VAC bans issued.
data.bans.gamenumberThe number of game bans issued.
data.bans.communitynumberThe number of community bans issued.
data.accounts.totalnumberThe total number of bot account for reporting.
expiresnumberThe timestamp when the cache will expire.

On this page