
Purplebricks Property Search
Pricing
$10.00/month + usage

Purplebricks Property Search
Search for properties listed on Purplebricks. You can filter results by location, type of property, price range, number of bedrooms, and more. The actor returns structured data in JSON format, making it easy to integrate with other applications.
0.0 (0)
Pricing
$10.00/month + usage
0
Monthly users
2
Runs succeeded
>99%
Last modified
a month ago
You can access the Purplebricks Property Search programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1{
2 "openapi": "3.0.1",
3 "info": {
4 "version": "0.0",
5 "x-build-id": "lVWMUc42JmlP3aAec"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/skunkattack~purplebricks-property-search/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-skunkattack-purplebricks-property-search",
16 "x-openai-isConsequential": false,
17 "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18 "tags": [
19 "Run Actor"
20 ],
21 "requestBody": {
22 "required": true,
23 "content": {
24 "application/json": {
25 "schema": {
26 "$ref": "#/components/schemas/inputSchema"
27 }
28 }
29 }
30 },
31 "parameters": [
32 {
33 "name": "token",
34 "in": "query",
35 "required": true,
36 "schema": {
37 "type": "string"
38 },
39 "description": "Enter your Apify token here"
40 }
41 ],
42 "responses": {
43 "200": {
44 "description": "OK"
45 }
46 }
47 }
48 },
49 "/acts/skunkattack~purplebricks-property-search/runs": {
50 "post": {
51 "operationId": "runs-sync-skunkattack-purplebricks-property-search",
52 "x-openai-isConsequential": false,
53 "summary": "Executes an Actor and returns information about the initiated run in response.",
54 "tags": [
55 "Run Actor"
56 ],
57 "requestBody": {
58 "required": true,
59 "content": {
60 "application/json": {
61 "schema": {
62 "$ref": "#/components/schemas/inputSchema"
63 }
64 }
65 }
66 },
67 "parameters": [
68 {
69 "name": "token",
70 "in": "query",
71 "required": true,
72 "schema": {
73 "type": "string"
74 },
75 "description": "Enter your Apify token here"
76 }
77 ],
78 "responses": {
79 "200": {
80 "description": "OK",
81 "content": {
82 "application/json": {
83 "schema": {
84 "$ref": "#/components/schemas/runsResponseSchema"
85 }
86 }
87 }
88 }
89 }
90 }
91 },
92 "/acts/skunkattack~purplebricks-property-search/run-sync": {
93 "post": {
94 "operationId": "run-sync-skunkattack-purplebricks-property-search",
95 "x-openai-isConsequential": false,
96 "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97 "tags": [
98 "Run Actor"
99 ],
100 "requestBody": {
101 "required": true,
102 "content": {
103 "application/json": {
104 "schema": {
105 "$ref": "#/components/schemas/inputSchema"
106 }
107 }
108 }
109 },
110 "parameters": [
111 {
112 "name": "token",
113 "in": "query",
114 "required": true,
115 "schema": {
116 "type": "string"
117 },
118 "description": "Enter your Apify token here"
119 }
120 ],
121 "responses": {
122 "200": {
123 "description": "OK"
124 }
125 }
126 }
127 }
128 },
129 "components": {
130 "schemas": {
131 "inputSchema": {
132 "type": "object",
133 "required": [
134 "location"
135 ],
136 "properties": {
137 "location": {
138 "title": "Location",
139 "type": "string",
140 "description": "Enter a town, city, or postcode"
141 },
142 "buy_let": {
143 "title": "Buy or Let",
144 "enum": [
145 "buy",
146 "let"
147 ],
148 "type": "string",
149 "description": "Search for properties for sale or to rent?",
150 "default": "buy"
151 },
152 "min_price": {
153 "title": "Min price",
154 "type": "integer",
155 "description": "Lowest price to include in search"
156 },
157 "max_price": {
158 "title": "Max price",
159 "type": "integer",
160 "description": "Highest price to include in search"
161 },
162 "min_bedrooms": {
163 "title": "Min bedrooms",
164 "enum": [
165 "studio",
166 "1",
167 "2",
168 "3",
169 "4",
170 "5",
171 "6",
172 "7",
173 "8",
174 "9",
175 "10"
176 ],
177 "type": "string",
178 "description": "Minimum number of bedrooms"
179 },
180 "max_bedrooms": {
181 "title": "Max bedrooms",
182 "enum": [
183 "studio",
184 "1",
185 "2",
186 "3",
187 "4",
188 "5",
189 "6",
190 "7",
191 "8",
192 "9",
193 "10"
194 ],
195 "type": "string",
196 "description": "Maximum number of bedrooms"
197 },
198 "radius": {
199 "title": "Radius (miles)",
200 "type": "integer",
201 "description": "Radius in miles from search location (30 miles max)",
202 "default": 2
203 },
204 "include_sold": {
205 "title": "Include sold / set",
206 "type": "boolean",
207 "description": "Include properties which are already sold or let",
208 "default": false
209 },
210 "sort_by": {
211 "title": "Sort by",
212 "enum": [
213 "highest_price",
214 "lowest_price",
215 "most_recent"
216 ],
217 "type": "string",
218 "description": "How to sort results",
219 "default": "highest_price"
220 },
221 "max_results": {
222 "title": "Max results",
223 "type": "integer",
224 "description": "maximum number of results to return, default is 50",
225 "default": 50
226 }
227 }
228 },
229 "runsResponseSchema": {
230 "type": "object",
231 "properties": {
232 "data": {
233 "type": "object",
234 "properties": {
235 "id": {
236 "type": "string"
237 },
238 "actId": {
239 "type": "string"
240 },
241 "userId": {
242 "type": "string"
243 },
244 "startedAt": {
245 "type": "string",
246 "format": "date-time",
247 "example": "2025-01-08T00:00:00.000Z"
248 },
249 "finishedAt": {
250 "type": "string",
251 "format": "date-time",
252 "example": "2025-01-08T00:00:00.000Z"
253 },
254 "status": {
255 "type": "string",
256 "example": "READY"
257 },
258 "meta": {
259 "type": "object",
260 "properties": {
261 "origin": {
262 "type": "string",
263 "example": "API"
264 },
265 "userAgent": {
266 "type": "string"
267 }
268 }
269 },
270 "stats": {
271 "type": "object",
272 "properties": {
273 "inputBodyLen": {
274 "type": "integer",
275 "example": 2000
276 },
277 "rebootCount": {
278 "type": "integer",
279 "example": 0
280 },
281 "restartCount": {
282 "type": "integer",
283 "example": 0
284 },
285 "resurrectCount": {
286 "type": "integer",
287 "example": 0
288 },
289 "computeUnits": {
290 "type": "integer",
291 "example": 0
292 }
293 }
294 },
295 "options": {
296 "type": "object",
297 "properties": {
298 "build": {
299 "type": "string",
300 "example": "latest"
301 },
302 "timeoutSecs": {
303 "type": "integer",
304 "example": 300
305 },
306 "memoryMbytes": {
307 "type": "integer",
308 "example": 1024
309 },
310 "diskMbytes": {
311 "type": "integer",
312 "example": 2048
313 }
314 }
315 },
316 "buildId": {
317 "type": "string"
318 },
319 "defaultKeyValueStoreId": {
320 "type": "string"
321 },
322 "defaultDatasetId": {
323 "type": "string"
324 },
325 "defaultRequestQueueId": {
326 "type": "string"
327 },
328 "buildNumber": {
329 "type": "string",
330 "example": "1.0.0"
331 },
332 "containerUrl": {
333 "type": "string"
334 },
335 "usage": {
336 "type": "object",
337 "properties": {
338 "ACTOR_COMPUTE_UNITS": {
339 "type": "integer",
340 "example": 0
341 },
342 "DATASET_READS": {
343 "type": "integer",
344 "example": 0
345 },
346 "DATASET_WRITES": {
347 "type": "integer",
348 "example": 0
349 },
350 "KEY_VALUE_STORE_READS": {
351 "type": "integer",
352 "example": 0
353 },
354 "KEY_VALUE_STORE_WRITES": {
355 "type": "integer",
356 "example": 1
357 },
358 "KEY_VALUE_STORE_LISTS": {
359 "type": "integer",
360 "example": 0
361 },
362 "REQUEST_QUEUE_READS": {
363 "type": "integer",
364 "example": 0
365 },
366 "REQUEST_QUEUE_WRITES": {
367 "type": "integer",
368 "example": 0
369 },
370 "DATA_TRANSFER_INTERNAL_GBYTES": {
371 "type": "integer",
372 "example": 0
373 },
374 "DATA_TRANSFER_EXTERNAL_GBYTES": {
375 "type": "integer",
376 "example": 0
377 },
378 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
379 "type": "integer",
380 "example": 0
381 },
382 "PROXY_SERPS": {
383 "type": "integer",
384 "example": 0
385 }
386 }
387 },
388 "usageTotalUsd": {
389 "type": "number",
390 "example": 0.00005
391 },
392 "usageUsd": {
393 "type": "object",
394 "properties": {
395 "ACTOR_COMPUTE_UNITS": {
396 "type": "integer",
397 "example": 0
398 },
399 "DATASET_READS": {
400 "type": "integer",
401 "example": 0
402 },
403 "DATASET_WRITES": {
404 "type": "integer",
405 "example": 0
406 },
407 "KEY_VALUE_STORE_READS": {
408 "type": "integer",
409 "example": 0
410 },
411 "KEY_VALUE_STORE_WRITES": {
412 "type": "number",
413 "example": 0.00005
414 },
415 "KEY_VALUE_STORE_LISTS": {
416 "type": "integer",
417 "example": 0
418 },
419 "REQUEST_QUEUE_READS": {
420 "type": "integer",
421 "example": 0
422 },
423 "REQUEST_QUEUE_WRITES": {
424 "type": "integer",
425 "example": 0
426 },
427 "DATA_TRANSFER_INTERNAL_GBYTES": {
428 "type": "integer",
429 "example": 0
430 },
431 "DATA_TRANSFER_EXTERNAL_GBYTES": {
432 "type": "integer",
433 "example": 0
434 },
435 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
436 "type": "integer",
437 "example": 0
438 },
439 "PROXY_SERPS": {
440 "type": "integer",
441 "example": 0
442 }
443 }
444 }
445 }
446 }
447 }
448 }
449 }
450 }
451}
Purplebricks Property Search OpenAPI definition
OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for Purplebricks Property Search from the options below:
If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients:
Pricing
Pricing model
RentalTo use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.
Free trial
2 hours
Price
$10.00