logoFRP

Tracker Info

🛠 Endpoint

POST https://api.fbot.cc/v1/tracker/info

The following parameters can be included in the request query parameters

PropTypeDefault
id
String
Required

Example Request:

POST https://api.fbot.cc/v1/tracker/info
Content-Type: application/json
{ 
    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": "Successfully retrieved tracker with id 5f8xxxxxxxxxxxxxxxxxxxxxxxx",
    "data": [
        {
            "tracker": "6720932236b53cxxxxxxxxx",
            "user": {
                "steam_id": "76561198000000000",
                "name": "Sample User",
                "avatar": "https://steamcdn-a.akamaihd.net/avatars/sample.jpg",
            },
            "bans": {
                "total": 2,
 
                "vac": 0,
                "game": 1,
                "community": true,
 
                "trade_lock": "full", // full, valve, none
                
                "last_ban": 10,
                "banned_at": "2021-10-10T10:10:10Z",
 
                "last_checked": "2021-10-10T10:10:10Z",
                "last_checked_str": "10 minutes ago",
            },
            "reports": [
                {
                    "id": "5f8xxxxxxxxxxxxxxxxxxxxxxxx",
                    "status": "completed", // pending, completed
                    "method": "basic"
                    "reason": "community", // community, cheating
                    "reports": {
                        "total": 20,
                        "success": 19,
                    },
                    "last_report": "2021-10-10T10:10:10Z",
                    "last_report_str": "10 minutes ago",
                }
            ]
        }
    ]
}

On this page