Discover/Gogan Team API
live

Gogan Team APIgoganteam.com

Search Southwest Florida MLS listings by address via the Gogan Team API. Returns price, beds, baths, sqft, agent info, and location autocomplete.

This API takes change requests — .
Endpoint health
verified 2d ago
search_properties
lookup_locations
2/2 passing latest checkself-healing
Endpoints
2
Updated
1mo ago

What is the Gogan Team 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.

Try it
Page number for pagination (1-based).
Street address or partial address to search for (e.g. '1008 Monterey Dr', 'Naples', '123 Main St').
Number of results per page, between 1 and 50.
api.parse.bot/scraper/5132c601-853e-4472-af57-4a86b9d9437f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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 '{
  "page": "1",
  "address": "Naples",
  "page_size": "12"
}'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace goganteam-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.gogan_team_property_search_api import GoganTeam, Property, Location

client = GoganTeam()

# Search for properties by address
for prop in client.properties.search(address="Naples", limit=5):
    print(prop.mls_id, prop.address, prop.city, prop.price, prop.beds, prop.sqft)

# Look up locations for autocomplete
for loc in client.locations.search(query="Fort Myers"):
    print(loc.value, loc.type)
All endpoints · 2 totalmissing one? ·

Search for properties by address. Returns paginated property listings with details including price, beds, baths, square footage, location, and listing agent information. Paginates via page number. Each property carries an MLS ID, address fields, pricing, and agent/office attribution. An address query of a city name (e.g. 'Naples') returns all listings mentioning that term.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
addressrequiredstringStreet address or partial address to search for (e.g. '1008 Monterey Dr', 'Naples', '123 Main St').
page_sizeintegerNumber of results per page, between 1 and 50.
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "page_size": "integer results per page",
    "properties": "array of Property objects",
    "total_pages": "integer total number of pages",
    "total_records": "integer total number of matching properties"
  },
  "sample": {
    "data": {
      "page": 1,
      "page_size": 12,
      "properties": [
        {
          "zip": "33974",
          "beds": 0,
          "city": "Lehigh Acres",
          "sqft": 0,
          "price": "$21,500",
          "state": "FL",
          "mls_id": "N6141514",
          "status": "Active",
          "acreage": 0.24,
          "address": "647 Naples",
          "latitude": "26.558887",
          "list_type": "Residential",
          "longitude": "-81.565623",
          "photo_url": "https://cdn.listingphotos.sierrastatic.com/pics2x/v1773008210/240/240_N6141514_01.jpg",
          "agent_name": "Dave Neary",
          "baths_full": 0,
          "baths_half": 0,
          "date_added": "11/21/2025",
          "detail_url": "/property-search/detail/240/N6141514/647-naples-lehigh-acres-fl-33974/?src=2",
          "year_built": "",
          "internal_id": 217911700,
          "office_name": "David Neary, Licensed Broker",
          "photo_count": 6,
          "subdivision": "",
          "days_on_site": 202,
          "lot_size_sqft": 10309
        }
      ],
      "total_pages": 7,
      "total_records": 74
    },
    "status": "success"
  }
}

About the Gogan Team API

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.

Reliability & maintenanceVerified

The Gogan Team API is a managed, monitored endpoint for goganteam.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when goganteam.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official goganteam.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Gogan Team provide an official developer API?+
Gogan Team does not publish a public developer API or API documentation. The Parse API provides structured access to the property data available on goganteam.com.
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?+
Not currently. The 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?+
Yes. The API reflects the MLS inventory listed through the Gogan Team brokerage, which covers Southwest Florida — primarily the Naples and Fort Myers metro areas. It does not cover other Florida regions or national MLS data. You can fork this API on Parse and revise it to point at a different regional MLS source if broader coverage is needed.
How does pagination work in search_properties?+
The response includes 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.
Page content last updated . Spec covers 2 endpoints from goganteam.com.
Related APIs in Real EstateSee all →
zillow.com API
Search for homes for sale, rent, or recently sold listings on Zillow while accessing detailed property information, Zestimates, agent profiles, and current mortgage rates all in one place. Streamline your real estate research by gathering comprehensive property details, agent information, and financing options without navigating multiple pages.
zoopla.co.uk API
Search for properties available for sale or rent, view detailed listing information, check sold house prices, and find local estate agents all in one place. Get access to live marketplace data to help you research properties, compare prices, and connect with agents on the Zoopla platform.
domain.com.au API
Search and compare property listings for sale, rent, or sold properties across Australia, view detailed property information and agent profiles, and explore suburb insights to make informed real estate decisions. Access comprehensive data on agents, neighborhoods, and properties all in one place.
funda.nl API
Search for property listings on Funda.nl, the largest Dutch real estate platform. Access prices, addresses, property details, and agent contact information across Dutch cities and neighbourhoods. Supports paginated browsing and bulk retrieval of listings by area.
loopnet.com API
Access LoopNet's commercial real estate data programmatically. Search listings by location, property type, and transaction type; retrieve full listing details including pricing and property facts; and find and profile commercial real estate brokers.
rightmove.co.uk API
Search for properties across the UK's largest property portal and retrieve detailed listings for homes for sale or to rent, including prices, descriptions, and key property information. Find your next home or investment opportunity by browsing available properties and getting comprehensive details on individual listings.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
trulia.com API
Search real estate listings for properties available for sale, rent, or recently sold, and access detailed information like property photos, price history, nearby schools, and local amenities. Compare similar homes, calculate mortgage estimates, and make informed decisions with comprehensive property data all in one place.