Trulia Explorer avatar
Trulia Explorer
Under maintenance

Pricing

$30.00/month + usage

Go to Store
Trulia Explorer

Trulia Explorer

Under maintenance
jupri/trulia

Developed by

cat

Maintained by Community

Search & Extract properties info from Trulia.com

0.0 (0)

Pricing

$30.00/month + usage

2

Monthly users

2

Runs succeeded

>99%

Last modified

5 months ago

You can access the Trulia Explorer 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.1",
5    "x-build-id": "UfBC65UzlE22g26Lz"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/jupri~trulia/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-jupri-trulia",
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/jupri~trulia/runs": {
50      "post": {
51        "operationId": "runs-sync-jupri-trulia",
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/jupri~trulia/run-sync": {
93      "post": {
94        "operationId": "run-sync-jupri-trulia",
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": "array",
140            "description": "",
141            "items": {
142              "type": "string"
143            }
144          },
145          "limit": {
146            "title": "🔄 Limit",
147            "type": "integer",
148            "description": "Number of results"
149          },
150          "sort": {
151            "title": "🔀 Sort",
152            "enum": [
153              "best",
154              "date",
155              "photos",
156              "price-high",
157              "price-low",
158              "mortage",
159              "beds",
160              "baths",
161              "sqft"
162            ],
163            "type": "string",
164            "description": "Sorting key"
165          },
166          "search_type": {
167            "title": "🍥 Search Mode",
168            "enum": [
169              "SALE",
170              "SOLD",
171              "RENT"
172            ],
173            "type": "string",
174            "description": ""
175          },
176          "keywords": {
177            "title": "Keywords",
178            "type": "array",
179            "description": "e.g: \"Pool\", \"Parking\"",
180            "items": {
181              "type": "string"
182            }
183          },
184          "home_types": {
185            "title": "Type of Home",
186            "type": "array",
187            "description": "",
188            "items": {
189              "type": "string",
190              "enum": [
191                "house",
192                "condo",
193                "townhome",
194                "multi",
195                "land",
196                "mobile",
197                "other"
198              ],
199              "enumTitles": [
200                "House",
201                "Condo",
202                "Townhome",
203                "Multi-Family",
204                "Land",
205                "Mobile/Manufactured",
206                "Other"
207              ]
208            }
209          },
210          "list_types": {
211            "title": "Listing Status",
212            "type": "array",
213            "description": "",
214            "items": {
215              "type": "string",
216              "enum": [
217                "resale",
218                "fsbo",
219                "new_homes",
220                "foreclosure",
221                "coming_soon",
222                "accepting_offers",
223                "pending"
224              ],
225              "enumTitles": [
226                "For Sale By Agent",
227                "For Sale By Owner",
228                "New Construction",
229                "Foreclosures",
230                "Comming Soon",
231                "Accepting Backup Offers",
232                "Pending & Under Contract"
233              ]
234            }
235          },
236          "other_listing": {
237            "title": "Other Listing",
238            "type": "boolean",
239            "description": "Agent Listing / Other"
240          },
241          "min_price": {
242            "title": "Price",
243            "type": "integer",
244            "description": ""
245          },
246          "max_price": {
247            "title": "",
248            "type": "integer",
249            "description": ""
250          },
251          "min_bedroom": {
252            "title": "Bedrooms",
253            "type": "integer",
254            "description": ""
255          },
256          "max_bedroom": {
257            "title": "",
258            "type": "integer",
259            "description": ""
260          },
261          "min_bathroom": {
262            "title": "Bathrooms",
263            "type": "integer",
264            "description": ""
265          },
266          "max_bathroom": {
267            "title": "",
268            "type": "integer",
269            "description": ""
270          },
271          "min_area": {
272            "title": "Square Feet",
273            "type": "integer",
274            "description": ""
275          },
276          "max_area": {
277            "title": "",
278            "type": "integer",
279            "description": ""
280          },
281          "min_lot": {
282            "title": "Lot Size",
283            "type": "integer",
284            "description": ""
285          },
286          "max_lot": {
287            "title": "",
288            "type": "integer",
289            "description": ""
290          },
291          "min_year": {
292            "title": "Year Built",
293            "type": "integer",
294            "description": ""
295          },
296          "max_year": {
297            "title": "",
298            "type": "integer",
299            "description": ""
300          },
301          "sold_within": {
302            "title": "[SOLD] Within",
303            "type": "integer",
304            "description": ""
305          },
306          "furnished": {
307            "title": "Furnished",
308            "type": "boolean",
309            "description": ""
310          },
311          "income_restricted": {
312            "title": "Income Restricted",
313            "type": "boolean",
314            "description": ""
315          },
316          "allowed_pets": {
317            "title": "Pets",
318            "type": "array",
319            "description": "",
320            "items": {
321              "type": "string",
322              "enum": [
323                "CATS",
324                "SMALL_DOGS",
325                "LARGE_DOGS"
326              ],
327              "enumTitles": [
328                "Cats",
329                "Small Dogs",
330                "Large Dogs"
331              ]
332            }
333          },
334          "home_amenities": {
335            "title": "Building Amenities",
336            "type": "array",
337            "description": "",
338            "items": {
339              "type": "string",
340              "enum": [
341                "GARAGE",
342                "POOL",
343                "HOTTUB",
344                "FITNESSCENTER"
345              ],
346              "enumTitles": [
347                "Garage",
348                "Pool",
349                "Hot Tub",
350                "Fitness Center"
351              ]
352            }
353          },
354          "unit_amenities": {
355            "title": "Unit Amenities",
356            "type": "array",
357            "description": "",
358            "items": {
359              "type": "string",
360              "enum": [
361                "WASHERDRYER",
362                "AIRCONDITION",
363                "MICROWAVE",
364                "DISHWASHER",
365                "DISPOSAL",
366                "BALCONY",
367                "FIREPLACE"
368              ],
369              "enumTitles": [
370                "Washer & Dryer",
371                "Air Condition",
372                "Microwave",
373                "Dish Washer",
374                "Disposal",
375                "Balcony",
376                "Fire Place"
377              ]
378            }
379          }
380        }
381      },
382      "runsResponseSchema": {
383        "type": "object",
384        "properties": {
385          "data": {
386            "type": "object",
387            "properties": {
388              "id": {
389                "type": "string"
390              },
391              "actId": {
392                "type": "string"
393              },
394              "userId": {
395                "type": "string"
396              },
397              "startedAt": {
398                "type": "string",
399                "format": "date-time",
400                "example": "2025-01-08T00:00:00.000Z"
401              },
402              "finishedAt": {
403                "type": "string",
404                "format": "date-time",
405                "example": "2025-01-08T00:00:00.000Z"
406              },
407              "status": {
408                "type": "string",
409                "example": "READY"
410              },
411              "meta": {
412                "type": "object",
413                "properties": {
414                  "origin": {
415                    "type": "string",
416                    "example": "API"
417                  },
418                  "userAgent": {
419                    "type": "string"
420                  }
421                }
422              },
423              "stats": {
424                "type": "object",
425                "properties": {
426                  "inputBodyLen": {
427                    "type": "integer",
428                    "example": 2000
429                  },
430                  "rebootCount": {
431                    "type": "integer",
432                    "example": 0
433                  },
434                  "restartCount": {
435                    "type": "integer",
436                    "example": 0
437                  },
438                  "resurrectCount": {
439                    "type": "integer",
440                    "example": 0
441                  },
442                  "computeUnits": {
443                    "type": "integer",
444                    "example": 0
445                  }
446                }
447              },
448              "options": {
449                "type": "object",
450                "properties": {
451                  "build": {
452                    "type": "string",
453                    "example": "latest"
454                  },
455                  "timeoutSecs": {
456                    "type": "integer",
457                    "example": 300
458                  },
459                  "memoryMbytes": {
460                    "type": "integer",
461                    "example": 1024
462                  },
463                  "diskMbytes": {
464                    "type": "integer",
465                    "example": 2048
466                  }
467                }
468              },
469              "buildId": {
470                "type": "string"
471              },
472              "defaultKeyValueStoreId": {
473                "type": "string"
474              },
475              "defaultDatasetId": {
476                "type": "string"
477              },
478              "defaultRequestQueueId": {
479                "type": "string"
480              },
481              "buildNumber": {
482                "type": "string",
483                "example": "1.0.0"
484              },
485              "containerUrl": {
486                "type": "string"
487              },
488              "usage": {
489                "type": "object",
490                "properties": {
491                  "ACTOR_COMPUTE_UNITS": {
492                    "type": "integer",
493                    "example": 0
494                  },
495                  "DATASET_READS": {
496                    "type": "integer",
497                    "example": 0
498                  },
499                  "DATASET_WRITES": {
500                    "type": "integer",
501                    "example": 0
502                  },
503                  "KEY_VALUE_STORE_READS": {
504                    "type": "integer",
505                    "example": 0
506                  },
507                  "KEY_VALUE_STORE_WRITES": {
508                    "type": "integer",
509                    "example": 1
510                  },
511                  "KEY_VALUE_STORE_LISTS": {
512                    "type": "integer",
513                    "example": 0
514                  },
515                  "REQUEST_QUEUE_READS": {
516                    "type": "integer",
517                    "example": 0
518                  },
519                  "REQUEST_QUEUE_WRITES": {
520                    "type": "integer",
521                    "example": 0
522                  },
523                  "DATA_TRANSFER_INTERNAL_GBYTES": {
524                    "type": "integer",
525                    "example": 0
526                  },
527                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
528                    "type": "integer",
529                    "example": 0
530                  },
531                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
532                    "type": "integer",
533                    "example": 0
534                  },
535                  "PROXY_SERPS": {
536                    "type": "integer",
537                    "example": 0
538                  }
539                }
540              },
541              "usageTotalUsd": {
542                "type": "number",
543                "example": 0.00005
544              },
545              "usageUsd": {
546                "type": "object",
547                "properties": {
548                  "ACTOR_COMPUTE_UNITS": {
549                    "type": "integer",
550                    "example": 0
551                  },
552                  "DATASET_READS": {
553                    "type": "integer",
554                    "example": 0
555                  },
556                  "DATASET_WRITES": {
557                    "type": "integer",
558                    "example": 0
559                  },
560                  "KEY_VALUE_STORE_READS": {
561                    "type": "integer",
562                    "example": 0
563                  },
564                  "KEY_VALUE_STORE_WRITES": {
565                    "type": "number",
566                    "example": 0.00005
567                  },
568                  "KEY_VALUE_STORE_LISTS": {
569                    "type": "integer",
570                    "example": 0
571                  },
572                  "REQUEST_QUEUE_READS": {
573                    "type": "integer",
574                    "example": 0
575                  },
576                  "REQUEST_QUEUE_WRITES": {
577                    "type": "integer",
578                    "example": 0
579                  },
580                  "DATA_TRANSFER_INTERNAL_GBYTES": {
581                    "type": "integer",
582                    "example": 0
583                  },
584                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
585                    "type": "integer",
586                    "example": 0
587                  },
588                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
589                    "type": "integer",
590                    "example": 0
591                  },
592                  "PROXY_SERPS": {
593                    "type": "integer",
594                    "example": 0
595                  }
596                }
597              }
598            }
599          }
600        }
601      }
602    }
603  }
604}

Trulia 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 Trulia Explorer 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

Rental 

To 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

7 days

Price

$30.00