FRP LogoFuture Reportbot

Get Queue Status

🛠 Endpoint

POST https://api.fbot.cc/v1/queue/status

The following parameters should be included in the request body

FieldTypeRequiredDescription
report_idstringYesThe Report ID by the queue/add request

Example Request:

POST https://api.fbot.cc/v1/queue/status
Content-Type: application/json
Authorization : Bearer <your-frp-key>
{ 
    report_id: '5f8xxxxxxxxxxxxxxxxxxxxxxxx' /* Required */
}

🚀 Response

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

{
    "success": true,
    "message": "Queue status retrieved successfully",
    "data": {
        "status": "success",
        "position": 1,
 
        "target": {
            "steam_id": "76561198000000000",
            "name": "Sample User",
            "avatar": "https://steamcdn-a.akamaihd.net/avatars/sample.jpg",
        },
        
        "stats": {
            "total": 20,
            "success": 20,
            "failed": 0,
            "repeated": 0,
        },
    }
}

Response Fields

FieldTypeDescription
successbooleanIndicates whether the request was successful (true or false).
messagestringA message from the API
data.statusstringThe status of the report on the queue
data.positionnumberThe position of the report in the queue
data.target.steam_idstringThe Steam ID of the user in the queue
data.target.namestringThe name of the user in the queue
data.target.avatarstringThe avatar of the user in the queue
data.stats.totalnumberThe total number of reports for the user
data.stats.successnumberThe number of successful reports for the user
data.stats.failednumberThe number of failed reports for the user
data.stats.repeatednumberThe number of repeated reports for the user

On this page