Parcel map for a single site in GeoJSON format

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/protect-earth/doc/partner-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Partner API MCP server": {
  "url": "https://bump.sh/protect-earth/doc/partner-api/mcp"
}
Close
GET /maps/sites/{site_uuid}

Returns all parcels for all locations belonging to one site as a GeoJSON FeatureCollection.

Path parameters

  • site_uuid string(uuid) Required

Responses

  • 200 application/geo+json

    OK

    Hide response attributes Show response attributes object
    • type string Required
    • features array[object] Required
      Hide features attributes Show features attributes object
      • type string Required
      • geometry object Required
        Hide geometry attributes Show geometry attributes object
      • properties object Required
        Hide properties attribute Show properties attribute object
        • name string
GET /maps/sites/{site_uuid}
curl \
 --request GET 'https://api.protect.earth/maps/sites/{site_uuid}'
Response examples (200)
{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -1.9381,
          51.87766
        ]
      },
      "properties": {
        "name": "Lower Hampen Farm"
      }
    }
  ]
}