> ## Documentation Index
> Fetch the complete documentation index at: https://docs-v2.campflare.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Land Overview

> Get information about public lands and their boundaries

The Land API allows for the retrieval of geographic boundary and region data for various types of land areas and points of interest. For example, you can use this API to find all the campgrounds within a specific park/area/state/etc, or determine which park a particular campground is located in.

### Land

* **Administrative Regions**: Cities, Counties, States, Countries, Reservations
* **Parks and Wild Areas**: Parks (soon expanding to park type, "National Park", "State Park", etc)
* **Other Areas**: Military: Private, Other

We're expanding our data to include additional metadata for each land area, including: Regulations, management, descriptions, alerts, photos, etc.

### Points of Interest (POI) Types

POIs contain a Unique ID, Name, POI Type and Latitude/Longitude Coordinates. These IDs can be used to reference other endpoints in the API (campgrounds).

### Finding Land Areas and POIs

Land areas can be discovered through:

* Name-based search across all land types
* Location-based search by providing latitude/longitude coordinates
* Getting parent/child relationships between lands and POIs

When searching by a point location, the API returns all land areas that contain that point. For example, searching at coordinates in Yosemite would return:

```json theme={null}
{
  "lands": [
    {"name": "United States", "kind": "country", ...},
    {"name": "California", "kind": "state", ...},
    {"name": "Fresno County", "type": "county", ...},
    {"name": "Yosemite National Park", "type": "park", ...},
    {"name": "Yosemite Wilderness", "type": "park", ...}
  ]
}
```

To find Points of Interest one may get all POIs within a specific land area.
