Redfin Scraper avatar

Redfin Scraper

Try for free

3 days trial then $30.00/month - No credit card required now

Go to Store
Redfin Scraper

Redfin Scraper

epctex/redfin-scraper
Try for free

3 days trial then $30.00/month - No credit card required now

Discover key insights using Redfin's comprehensive property listings. Explore detailed descriptions, images, features, property specifics, pricing information, neighborhood data, nearby educational institutions, and more across numerous properties.

You can access the Redfin Scraper programmatically from your own applications by using the Apify API. You can 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": "qocARw5pGYpY5tuvQ"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/epctex~redfin-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-epctex-redfin-scraper",
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/epctex~redfin-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-epctex-redfin-scraper",
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/epctex~redfin-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-epctex-redfin-scraper",
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          "proxy"
135        ],
136        "properties": {
137          "search": {
138            "title": "Search keyword",
139            "type": "string",
140            "description": "The keyword that you can search on Redfin"
141          },
142          "searchMode": {
143            "title": "Search mode",
144            "enum": [
145              "SALE",
146              "RENT",
147              "SOLD"
148            ],
149            "type": "string",
150            "description": "Select the search mode",
151            "default": "SALE"
152          },
153          "startUrls": {
154            "title": "Start URLs",
155            "type": "array",
156            "description": "URLs to start with. It should be search or detail URL",
157            "items": {
158              "type": "string"
159            }
160          },
161          "includeAboveTheFold": {
162            "title": "Includes Above The Fold Data",
163            "type": "boolean",
164            "description": "This option enables the actor to retrieve Above The Fold information per each property. Please note that this will increase the runtime of the actor.",
165            "default": false
166          },
167          "includeBelowTheFold": {
168            "title": "Includes Below The Fold Data",
169            "type": "boolean",
170            "description": "This option enables the actor to retrieve Below The Fold information per each property. Please note that this will increase the runtime of the actor.",
171            "default": false
172          },
173          "includeParcelBounds": {
174            "title": "Includes Parcel Bounds",
175            "type": "boolean",
176            "description": "This option enables the actor to retrieve Parcel Bounds information per each property. Please note that this will increase the runtime of the actor.",
177            "default": false
178          },
179          "includeBannerData": {
180            "title": "Includes Banner Data",
181            "type": "boolean",
182            "description": "This option enables the actor to retrieve Banner Data information per each property. Please note that this will increase the runtime of the actor.",
183            "default": false
184          },
185          "includeAmenities": {
186            "title": "Includes Amenities Data",
187            "type": "boolean",
188            "description": "This option enables the actor to retrieve Amenities Data information per each property. Please note that this will increase the runtime of the actor.",
189            "default": false
190          },
191          "includeWalkScore": {
192            "title": "Includes Walk Score Data",
193            "type": "boolean",
194            "description": "This option enables the actor to retrieve Walk Score information per each property. Please note that this will increase the runtime of the actor.",
195            "default": false
196          },
197          "includeSellsideThreshold": {
198            "title": "Includes Sellside Threshold Data",
199            "type": "boolean",
200            "description": "This option enables the actor to retrieve Sellside Threshold information per each property. Please note that this will increase the runtime of the actor.",
201            "default": false
202          },
203          "maxItems": {
204            "title": "Maximum number of listing items",
205            "type": "integer",
206            "description": "Maximum number of listing items that you want as output. Default is all"
207          },
208          "endPage": {
209            "title": "List end page",
210            "type": "integer",
211            "description": "The page number that you want to end with. By default there is no end page. This is applies to all search request and startUrls individually."
212          },
213          "customMapFunction": {
214            "title": "Custom map function",
215            "type": "string",
216            "description": "Function that takes each of the objects as argument and returns data that will be mapped by the function itself."
217          },
218          "proxy": {
219            "title": "Proxy configuration",
220            "type": "object",
221            "description": "Select proxies to be used by your crawler."
222          }
223        }
224      },
225      "runsResponseSchema": {
226        "type": "object",
227        "properties": {
228          "data": {
229            "type": "object",
230            "properties": {
231              "id": {
232                "type": "string"
233              },
234              "actId": {
235                "type": "string"
236              },
237              "userId": {
238                "type": "string"
239              },
240              "startedAt": {
241                "type": "string",
242                "format": "date-time",
243                "example": "2025-01-08T00:00:00.000Z"
244              },
245              "finishedAt": {
246                "type": "string",
247                "format": "date-time",
248                "example": "2025-01-08T00:00:00.000Z"
249              },
250              "status": {
251                "type": "string",
252                "example": "READY"
253              },
254              "meta": {
255                "type": "object",
256                "properties": {
257                  "origin": {
258                    "type": "string",
259                    "example": "API"
260                  },
261                  "userAgent": {
262                    "type": "string"
263                  }
264                }
265              },
266              "stats": {
267                "type": "object",
268                "properties": {
269                  "inputBodyLen": {
270                    "type": "integer",
271                    "example": 2000
272                  },
273                  "rebootCount": {
274                    "type": "integer",
275                    "example": 0
276                  },
277                  "restartCount": {
278                    "type": "integer",
279                    "example": 0
280                  },
281                  "resurrectCount": {
282                    "type": "integer",
283                    "example": 0
284                  },
285                  "computeUnits": {
286                    "type": "integer",
287                    "example": 0
288                  }
289                }
290              },
291              "options": {
292                "type": "object",
293                "properties": {
294                  "build": {
295                    "type": "string",
296                    "example": "latest"
297                  },
298                  "timeoutSecs": {
299                    "type": "integer",
300                    "example": 300
301                  },
302                  "memoryMbytes": {
303                    "type": "integer",
304                    "example": 1024
305                  },
306                  "diskMbytes": {
307                    "type": "integer",
308                    "example": 2048
309                  }
310                }
311              },
312              "buildId": {
313                "type": "string"
314              },
315              "defaultKeyValueStoreId": {
316                "type": "string"
317              },
318              "defaultDatasetId": {
319                "type": "string"
320              },
321              "defaultRequestQueueId": {
322                "type": "string"
323              },
324              "buildNumber": {
325                "type": "string",
326                "example": "1.0.0"
327              },
328              "containerUrl": {
329                "type": "string"
330              },
331              "usage": {
332                "type": "object",
333                "properties": {
334                  "ACTOR_COMPUTE_UNITS": {
335                    "type": "integer",
336                    "example": 0
337                  },
338                  "DATASET_READS": {
339                    "type": "integer",
340                    "example": 0
341                  },
342                  "DATASET_WRITES": {
343                    "type": "integer",
344                    "example": 0
345                  },
346                  "KEY_VALUE_STORE_READS": {
347                    "type": "integer",
348                    "example": 0
349                  },
350                  "KEY_VALUE_STORE_WRITES": {
351                    "type": "integer",
352                    "example": 1
353                  },
354                  "KEY_VALUE_STORE_LISTS": {
355                    "type": "integer",
356                    "example": 0
357                  },
358                  "REQUEST_QUEUE_READS": {
359                    "type": "integer",
360                    "example": 0
361                  },
362                  "REQUEST_QUEUE_WRITES": {
363                    "type": "integer",
364                    "example": 0
365                  },
366                  "DATA_TRANSFER_INTERNAL_GBYTES": {
367                    "type": "integer",
368                    "example": 0
369                  },
370                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
371                    "type": "integer",
372                    "example": 0
373                  },
374                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
375                    "type": "integer",
376                    "example": 0
377                  },
378                  "PROXY_SERPS": {
379                    "type": "integer",
380                    "example": 0
381                  }
382                }
383              },
384              "usageTotalUsd": {
385                "type": "number",
386                "example": 0.00005
387              },
388              "usageUsd": {
389                "type": "object",
390                "properties": {
391                  "ACTOR_COMPUTE_UNITS": {
392                    "type": "integer",
393                    "example": 0
394                  },
395                  "DATASET_READS": {
396                    "type": "integer",
397                    "example": 0
398                  },
399                  "DATASET_WRITES": {
400                    "type": "integer",
401                    "example": 0
402                  },
403                  "KEY_VALUE_STORE_READS": {
404                    "type": "integer",
405                    "example": 0
406                  },
407                  "KEY_VALUE_STORE_WRITES": {
408                    "type": "number",
409                    "example": 0.00005
410                  },
411                  "KEY_VALUE_STORE_LISTS": {
412                    "type": "integer",
413                    "example": 0
414                  },
415                  "REQUEST_QUEUE_READS": {
416                    "type": "integer",
417                    "example": 0
418                  },
419                  "REQUEST_QUEUE_WRITES": {
420                    "type": "integer",
421                    "example": 0
422                  },
423                  "DATA_TRANSFER_INTERNAL_GBYTES": {
424                    "type": "integer",
425                    "example": 0
426                  },
427                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
428                    "type": "integer",
429                    "example": 0
430                  },
431                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
432                    "type": "integer",
433                    "example": 0
434                  },
435                  "PROXY_SERPS": {
436                    "type": "integer",
437                    "example": 0
438                  }
439                }
440              }
441            }
442          }
443        }
444      }
445    }
446  }
447}

Redfin Scraper 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 Redfin Scraper 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:

Developer
Maintained by Community

Actor Metrics

  • 11 monthly users

  • 3 bookmarks

  • 93% runs succeeded

  • 5.3 hours response time

  • Created in May 2024

  • Modified 21 hours ago