Storages
This endpoint provides information about storages.
Storage Information
GET
https://api.treefarmer.xyz/storages
This endpoint will provide an array of storages by level with their cost, capacity and name.
Query Parameters
Name
Type
Description
search
string
Find a specific storage by its name or level (e.g. American Arborvitae or 5)
Headers
Name
Type
Description
Authorization
string
Your Tree Farmer API token
{
"error": false,
"message": "The requested storage data successfully found.",
"data": [
{
"capacity": 79,
"cost": 159,
"level": 1,
"name": "Chest"
},
{
"capacity": 197,
"cost": 1192,
"level": 2,
"name": "Crate"
},
...
]
}
Last updated
Was this helpful?