logoFRP

Tracker Add

Developer Info

This endpoint can only be used via website if no valid authentication header is provided

🛠 Endpoint

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

The following parameters should be included in the request body

PropTypeDefault
profile
string
Required

Example Request:

POST https://api.fbot.cc/v1/tracker/add
Content-Type: application/json
# Authorization: Bearer <your-frp-key>
{ 
    profile: '76561198000000000' /* Required */
}

🚀 Response

Upon successfully whitelisting a user, the API will return a 200 OK response with the following structure:

{
    "success": true,
    "message": "Successfully added user (76561198000000000) to tracker with id 6a9xxxxxxxxxxxxxxxxxxxxxxxx",
    "data": {
        "tracker": "6a9xxxxxxxxxxxxxxxxxxxxxxxx",
        "user": {
            "id": "76561198000000000",
            "name": "Sample User",
            "avatar": "https://steamcdn-a.akamaihd.net/avatars/sample.jpg"
        }
    }
}

On this page