Get Sites

GET /sites

Sites are locations where trees are planted or other units are placed. They are the physical location of the work.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string Required
    • location string Required
    • url string(url) Required
    • species array[object] Required

      Different types of units.

      Hide species attributes Show species attributes object
    • allocatedUnits integer(int64) Required
    • coordinates object Required

      Additional properties are allowed.

      Hide coordinates attributes Show coordinates attributes object
GET /sites
curl \
 --request GET 'https://api.protect.earth/sites'
Response examples (200)
[
  {
    "id": "string",
    "name": "Bourton on the Water",
    "location": "Cheltenham, England",
    "url": "https://www.protect.earth/projects/bourton-on-the-water",
    "species": [
      {
        "id": "string",
        "name": "Wild Cherry"
      }
    ],
    "allocatedUnits": 710,
    "coordinates": {
      "latitude": 51.87351,
      "longitude": -1.90973
    }
  }
]