Documentation Index
Fetch the complete documentation index at: https://docs.lobstr.io/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve scraped data from your Realtor Listings Scraper runs.
Your API authentication token. Value: Token YOUR_API_KEY
Query Parameters
Hash of the squid to get results from.
Hash of a specific run (optional).
Page number (default: 1).
Results per page (default: 50, max: 100).
Result Fields
Direct URL to the listing on realtor.com. Example: https://www.realtor.com/realestateandhomes-detail/123-Main-St_Los-Angeles_CA_90001_M12345-67890
Full formatted address of the property. Example: 123 Main St, Los Angeles, CA 90001
Street address. Example: 123 Main St
City name. Example: Los Angeles
US state abbreviation. Example: CA
County name. Example: Los Angeles County
Listing status (e.g. for_sale, sold, pending). Example: for_sale
Listed price in USD. Example: 750000
Final sold price (if applicable). Example: 740000
Currency of the price. Example: USD
Number of bedrooms. Example: 3
Number of bathrooms. Example: 2.5
Interior living area in square feet. Example: 1850
Lot size in acres. Example: 0.15
Type of property (e.g. single_family, condo, townhouse). Example: single_family
Whether the property is new construction. Example: false
Whether the property is to be built. Example: false
Whether the listing is a foreclosure. Example: false
Whether the listing is under contract/pending. Example: false
Name of the brokerage listing the property. Example: Keller Williams Realty
Primary seller or listing agent name.
Co-seller or co-listing agent name.
Latitude coordinate of the property. Example: 34.052235
Longitude coordinate of the property. Example: -118.243683
URL of the main listing photo.
Date the listing was first published. Example: 2026-03-10
Date the property was listed. Example: 2026-03-10
Date the property was sold (if applicable). Example: 2026-03-28
Code Examples
curl -X GET "https://api.lobstr.io/v1/results?squid=YOUR_SQUID_HASH&page=1&limit=50" \
-H "Authorization: Token YOUR_API_KEY"
Response
{
"total_results": 120,
"limit": 50,
"page": 1,
"total_pages": 3,
"result_from": 1,
"result_to": 50,
"data": [
{
"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"object": "result",
"squid": "YOUR_SQUID_HASH",
"run": "RUN_HASH",
"url": "https://www.realtor.com/realestateandhomes-detail/123-Main-St_Los-Angeles_CA_90001_M12345-67890",
"full_address": "123 Main St, Los Angeles, CA 90001",
"street": "123 Main St",
"city": "Los Angeles",
"state": "CA",
"county": "Los Angeles County",
"zip_code": "90001",
"status": "for_sale",
"price": 750000,
"sold_price": null,
"currency": "USD",
"bed": 3,
"bath": 2.0,
"house_size": 1850,
"acre_lot": 0.15,
"property_type": "single_family",
"is_new_construction": false,
"is_foreclosure": false,
"pending": false,
"brokered_by": "Keller Williams Realty",
"lat": 34.052235,
"lng": -118.243683,
"published_at": "2026-03-10",
"list_date": "2026-03-10",
"scraping_time": "2026-03-20T09:15:00.000Z"
}
],
"next": "https://api.lobstr.io/v1/results?squid=YOUR_SQUID_HASH&page=2&limit=50",
"previous": null
}