LandTech API (0.3.0)
Search for land parcels and retrieve detailed insights on ownership, planning applications and property details.
Download OpenAPI description
Languages
Servers
Mock server
https://developers.land.tech/_mock/openapi/
LandTech API Service
https://app.land.tech/api/
- Mock server
https://developers.land.tech/_mock/openapi/titles/{title_number}
- LandTech API Service
https://app.land.tech/api/titles/{title_number}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.land.tech/_mock/openapi/titles/WT77573 \
-H 'X-API-Key: YOUR_API_KEY_HERE'
Response
application/json
{ "data": { "title": { … } } }
- Mock server
https://developers.land.tech/_mock/openapi/titles
- LandTech API Service
https://app.land.tech/api/titles
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developers.land.tech/_mock/openapi/titles \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"titles": [
"SGL235730"
]
}'
Response
application/json
{ "data": { "title": [ … ] } }
- Mock server
https://developers.land.tech/_mock/openapi/properties/{uprn}
- LandTech API Service
https://app.land.tech/api/properties/{uprn}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.land.tech/_mock/openapi/properties/100010716016 \
-H 'X-API-Key: YOUR_API_KEY_HERE'
Response
application/json
{ "data": { "propertyInformation": { … } } }
- Mock server
https://developers.land.tech/_mock/openapi/properties
- LandTech API Service
https://app.land.tech/api/properties
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developers.land.tech/_mock/openapi/properties \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"properties": [
"100023523019"
]
}'
Response
application/json
{ "data": { "property": [ … ] } }