Browse parcel boundaries on an interactive map, link directly to any parcel, or query ownership and address data through our REST API.
| Number | 07328101B |
|---|---|
| Owner | PANTHERS STADIUM LLC |
| Address | 325 S CEDAR ST CHARLOTTE NC, CHARLOTTE NC |
| GEOID | 37119 |
Pan, zoom, and click on parcel boundaries. View owner names, addresses, and parcel numbers.
Open MapEvery map view generates a shareable URL with coordinates and zoom level. Bookmark or share any parcel.
/parcels/019c6273-cde2-74ce-87f7-e9e55701deffQuery parcels and counties programmatically. Authenticate with an API key and get JSON responses.
See ExampleQuery parcel data with a simple API key.
curl -H "X-API-Key: your_api_key" \
"https://parcels.walsh.me/api/parcels?parcel_number=07328101B&limit=1"
{
"data": [
{
"id": "019c6273-cde2-74ce-87f7-e9e55701deff",
"parcel_number": "07328101B",
"alt_parcel_number": "07328101B",
"geoid": "37119",
"owner_name": "PANTHERS STADIUM LLC",
"owner_name_2": "ATTN: RICHARD M THIGPEN",
"site_address": "325 S CEDAR ST CHARLOTTE NC",
"site_city": "CHARLOTTE",
"site_state": "NC",
"site_zip": "28202-1514",
"mail_address": "800 S MINT ST 28202-1514",
"mail_city": "CHARLOTTE",
"mail_state": "NC",
"mail_zip": "28202-1514",
"latitude": 35.22670550961296,
"longitude": -80.85265378065672,
"source_state": "NC"
}
],
"total": 1,
"limit": 1,
"offset": 0
}