goganteam.com APIwww.goganteam.com ↗
Search Southwest Florida MLS listings by address via the Gogan Team API. Returns price, beds, baths, sqft, agent info, and location autocomplete.
curl -X POST 'https://api.parse.bot/scraper/5132c601-853e-4472-af57-4a86b9d9437f/search_properties' \
-H 'X-API-Key: $PARSE_API_KEY' \
-H 'Content-Type: application/json' \
-d '{}'Search for properties by address. Returns paginated property listings with details including price, beds, baths, square footage, location, and listing agent information.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| addressrequired | string | Street address or partial address to search for (e.g. '1008 Monterey Dr', '123 Main St'). |
| page_size | integer | Number of results per page, between 1 and 50. |
{
"type": "object",
"fields": {
"page": "integer",
"page_size": "integer",
"properties": "array of property objects with mls_id, address, city, state, zip, price, beds, baths_full, baths_half, sqft, acreage, year_built, list_type, photo_url, latitude, longitude, detail_url, office_name, agent_name, date_added",
"total_pages": "integer",
"total_records": "integer"
},
"sample": {
"page": 1,
"page_size": 12,
"properties": [
{
"zip": "34748",
"beds": 3,
"city": "Leesburg",
"sqft": 1968,
"price": "$535,000",
"state": "FL",
"mls_id": "G5112870",
"status": "Active",
"acreage": 0.51,
"address": "1008 Monterey Dr",
"latitude": "28.800313",
"list_type": "Single Family Home",
"longitude": "-81.865702",
"photo_url": "https://cdn.listingphotos.sierrastatic.com/pics2x/v1780332601/240/240_G5112870_01.jpg",
"agent_name": "Jane Doe",
"baths_full": 2,
"baths_half": 1,
"date_added": "6/1/2026",
"detail_url": "/property-search/detail/240/G5112870/1008-monterey-dr-leesburg-fl-34748/?src=2",
"year_built": "1973",
"internal_id": 1703757825,
"office_name": "Morris Realty And Investments",
"photo_count": 56,
"subdivision": "Leesburg East Leesburg",
"days_on_site": 1,
"lot_size_sqft": 22131
}
],
"total_pages": 1,
"total_records": 1
}
}About the goganteam.com API
The Gogan Team API provides 2 endpoints for querying Southwest Florida MLS property listings. The search_properties endpoint returns paginated results with 12+ fields per listing — including price, beds, baths, square footage, acreage, and year built — while lookup_locations resolves partial city names, subdivision names, ZIP codes, or street addresses into structured location inputs.
Property Search
The search_properties endpoint accepts a required address string (full or partial, e.g. '1008 Monterey Dr') and returns paginated MLS listings for Southwest Florida. Each property object in the properties array includes mls_id, address, city, state, zip, price, beds, baths_full, baths_half, sqft, acreage, and year_built. Pagination is controlled via the page and page_size parameters, where page_size accepts values between 1 and 50. The response also returns total_records and total_pages so you can walk through all matching results programmatically.
Location Lookup
The lookup_locations endpoint takes a query string and returns matching location items, each with a value and a type. Types include cities, areas, subdivisions, subareas, elementarySchools, middleSchools, and more. This is useful for discovering valid, normalized input strings before passing them to search_properties, or for building an address autocomplete feature in your own application.
Coverage and Scope
Data covers Southwest Florida MLS listings as surfaced through the Gogan Team platform. This includes residential properties in the Naples, Fort Myers, and surrounding areas. The API does not expose national or statewide MLS data — coverage is specific to the Southwest Florida region served by this brokerage.
- Look up current MLS listing prices for specific streets or neighborhoods in Southwest Florida.
- Build a property comparison tool using sqft, beds, baths, and year_built fields.
- Feed location autocomplete into a regional property search interface using lookup_locations.
- Track listing availability and price changes for addresses in a watchlist.
- Identify subdivisions and school zones for a given area using the location type field.
- Aggregate acreage and lot data for parcels in a specific ZIP code.
- Retrieve listing agent information alongside property details for lead qualification.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Gogan Team provide an official developer API?+
What does the lookup_locations endpoint return, and how does it differ from search_properties?+
lookup_locations returns a list of location items, each with a value string and a type (e.g. cities, subdivisions, elementarySchools, ZIP codes). It is intended for resolving ambiguous or partial queries into structured inputs. search_properties takes a specific address string and returns full property listing objects with price, size, and agent fields.Does the API return property photos or listing descriptions?+
search_properties response covers structured fields like price, beds, baths, sqft, acreage, year_built, and agent info, but does not include listing photos or free-text property descriptions. You can fork this API on Parse and revise it to add those fields if they are available on the source listing page.Is coverage limited to Southwest Florida?+
How does pagination work in search_properties?+
page, page_size, total_pages, and total_records. Pass the page integer to walk through result sets and use page_size (1–50) to control how many listings are returned per request.