Cutters
This endpoint provides information about cutters.
Cutter Information
GET
https://api.treefarmer.xyz/cutters
This endpoint will provide an array of cutters by level with their cooldown, cost, efficiency and name.
Query Parameters
Name
Type
Description
search
string
Find a specific cutter by its name or level (e.g. breadknife or 3)
Headers
Name
Type
Description
Authorization
string
Your Tree Farmer API token
{
"error": false,
"message": "The requested cutter data was successfully found.",
"data": [
{
"cooldown": 60,
"cost": 249,
"efficiency": [10, 20],
"level": 1,
"name": "Fist"
},
{
"cooldown": 69,
"cost": 1120,
"efficiency": [20, 30],
"level": 2,
"name": "Bread Knife"
},
...
]
}
Last updated
Was this helpful?