Plots

This endpoint provides information about plots.

Plot Information

GET https://api.treefarmer.xyz/plots

This endpoint will provide an array of plots by level with their cost and growth speed.

Query Parameters

Name
Type
Description

search

string

Find a specific plot by its level (e.g. 5)

Headers

Name
Type
Description

Authorization

string

Your Tree Farmer API token

{
  "error": false,
  "message": "The requested plot data successfully found.",
  "data": [
    {
      "cost": 479,
      "level": 1,
      "growthSpeed": 100
    },
    {
      "cost": 1197,
      "level": 2,
      "growthSpeed": 102
    },
        
    ...
      
  ]
}

Last updated