Workshop Author Info API
The Workshop Author API exposes details about map developers, subscribe ratios, and active project counts.
Basic Docs
Send a `GET` request to `/api/v1/workshop/author` providing the author's `uid` query parameter to query statistics.
GET/api/v1/workshop/author
Cost: 0.50 (basic) | 2.50 (detailed) | 5.00 (full) Credits per request
bash
curl -X GET \
"https://ffdata-api.onrender.com/api/v1/workshop/author?uid=1738283841&detail=basic" \
-H "Authorization: Bearer YOUR_API_KEY"Advanced Docs
Querying with `detail=full` fetches a detailed list of maps published by the author, including total player counts, regional likes, and map ratings.
| Parameter | Type | Required | Description |
|---|---|---|---|
| uid | integer | Yes | Author Free Fire account UID |
| detail | string | No | Depth level: `basic`, `detailed`, `full`. Default `basic` |
Craftland Context
In Free Fire, the custom game creation module is officially branded as **Craftland**. Within the API design layers, this subsystem is mapped and referred to as the **Workshop**.
Note: All endpoints containing references to "Workshop" or "Author" query the underlying Free Fire Craftland creator databases.
Notices
Important notice: Map listings might be delayed by up to 15 minutes due to downstream server caching. Unpublished or private draft map profiles are inaccessible.
Sample Response
json
{
"success": true,
"data": {
"uid": 1738283841,
"nickname": "CreatorX",
"likes": 45200,
"map_count": 12,
"popularity": 892,
"subscribe_count": 10582,
"publish_maps": [
{
"map_id": "CRAFT_90384812",
"map_name": "Ultimate Rush 2.0",
"likes": 29810,
"plays": 120489
}
]
},
"meta": {
"time_ms": 156,
"request_id": "c7d8e9f0-a1b2-c3d4-e5f6-a7b8c9d0e1f2"
}
}
}
}