Tree Farmer
DiscordInviteGitHub
API
API
  • Welcome
  • Endpoints
    • Cutters
    • Gifts
    • Plots
    • Storages
    • Trees
    • Vehicles
  • Other
    • Community Server
    • GitHub
    • Status
Powered by GitBook
On this page

Was this helpful?

  1. Endpoints

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"
    },
  
    ...
      
  ]
}
{
  "error": true,
  "message": "The requested cutter could not be found with the provided query. Please check the name or ID and try again."
}
PreviousWelcomeNextGifts

Last updated 3 years ago

Was this helpful?