Skip to main content
POST
/
parcels
/
area
Area Search
curl --request POST \
  --url https://api.buyparceldata.com/parcels/area \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "<string>",
  "features": [
    {
      "type": "<string>",
      "geometry": {},
      "properties": {}
    }
  ],
  "limit": 20,
  "offset": 0,
  "include_buildings": false
}
'
{
  "results": [
    {}
  ],
  "count": 123,
  "limit": 123,
  "offset": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.buyparceldata.com/llms.txt

Use this file to discover all available pages before exploring further.

Building footprints

Set include_buildings: true in the request body to include ORNL building footprint data for each parcel. Each parcel in the response will contain a buildings array with the physical structures on that parcel. The buildings key is omitted entirely when include_buildings is false (the default).

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
type
string
required
Allowed value: "FeatureCollection"
features
PolygonFeature · object[]
required
limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0
include_buildings
boolean
default:false

Response

Successful Response

results
Results · object[]
required
count
integer
required
limit
integer
required
offset
integer
required