propertiesget_running_costs_deprecated
Retrieve estimated running costs for UK properties listed on Zoopla to help buyers or renters assess ongoing expenses before committing.
Instructions
Get running costs
Query Parameters:
listing_id (Required): The value of listing_id field returned in .../properties/list endpoint
category: One of the following residential|commercial
section: One of the following for-sale|to-rent
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| listing_id | Yes | The value of listing_id field returned in .../properties/list endpoint | 56354192 |
| category | No | One of the following residential|commercial | |
| section | No | One of the following for-sale|to-rent |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "One of the following residential|commercial",
"type": "string"
},
"listing_id": {
"default": "56354192",
"description": "The value of listing_id field returned in .../properties/list endpoint",
"type": "number"
},
"section": {
"description": "One of the following for-sale|to-rent",
"type": "string"
}
},
"required": [
"listing_id"
],
"type": "object"
}