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

Headers

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

Last updated