v0.1.0
OpenAPI 3.0.2
PaTMa
API documentation
Client Libraries
API documentation
Production server
Find statistics (mean and median) for properties currently listed for sale, centred around a postcode or location.
A valid UK postcode
The latitude of a coordinate pair
The longitude of a coordinate pair
The number of bedrooms for a property
The type of property
The minimum number of data points to find
curl 'https://app.patma.co.uk/api/prospector/v1/asking-prices/?bedrooms=1&property_type=flat' \
--header 'Authorization: YOUR_SECRET_TOKEN'
{
"status": "success",
"response_time": 1,
"data": {
"data_points": 1,
"radius": 1,
"mean": 1,
"median": 1
},
"postcode": "string",
"lat": 1,
"long": 1,
"bedrooms": 1,
"property_type": "string"
}A successful response
Find price per floor area statistics (mean and median) for properties currently listed for sale, centred around a postcode or location.
A valid UK postcode
The latitude of a coordinate pair
The longitude of a coordinate pair
The number of bedrooms for a property
The type of property
The minimum number of data points to find
curl 'https://app.patma.co.uk/api/prospector/v1/asking-prices-floor-area/?bedrooms=1&property_type=flat' \
--header 'Authorization: YOUR_SECRET_TOKEN'
{
"status": "success",
"response_time": 1,
"data": {
"data_points": 1,
"radius": 1,
"mean_per_sqft": 1,
"mean_per_sqm": 1,
"median_per_sqft": 1,
"median_per_sqm": 1
},
"postcode": "string",
"lat": 1,
"long": 1,
"bedrooms": 1,
"property_type": "string"
}A successful response