Discover/sunbeltnetwork.com API
live

sunbeltnetwork.com APIsunbeltnetwork.com

Search and retrieve business-for-sale listings from Sunbelt Network. Filter by state, cash flow, revenue, and industry. Get financials, broker info, and office locations.

Endpoints
7
Updated
4mo ago
Try it
Starting page number.
Maximum number of listings to return.
Keyword, city, or listing ID to search for.
State name to filter by (e.g. 'Florida', 'California').
Maximum cash flow.
Minimum cash flow.
Maximum gross revenue.
Minimum gross revenue.
Country name to filter by.
Industry name or numeric ID. Accepted names: Agriculture, Automotive & Boat, Beauty & Personal Care, Building & Construction, Communication & Media, Education & Children, Entertainment & Recreation, Financial Services, Health Care & Fitness, Manufacturing, Non-Classifiable, Online & Technology, Pet Services, Restaurants & Food, Retail, Service Businesses, Transportation & Storage, Travel, Wholesale & Distributors. Accepted IDs: 1 through 19.
Maximum asking price.
Minimum asking price.
When true, filters to relocatable businesses only.
api.parse.bot/scraper/48e3871a-6136-4dde-9468-cd7c2b1a5f23/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/48e3871a-6136-4dde-9468-cd7c2b1a5f23/search_listings?limit=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Search for business-for-sale listings with various filters. Returns a paginated list of listings with financial summary and location. Automatically fetches multiple pages up to the specified limit.

Input
ParamTypeDescription
pageintegerStarting page number.
limitintegerMaximum number of listings to return.
querystringKeyword, city, or listing ID to search for.
statestringState name to filter by (e.g. 'Florida', 'California').
cf_maxnumberMaximum cash flow.
cf_minnumberMinimum cash flow.
gr_maxnumberMaximum gross revenue.
gr_minnumberMinimum gross revenue.
countrystringCountry name to filter by.
industrystringIndustry name or numeric ID. Accepted names: Agriculture, Automotive & Boat, Beauty & Personal Care, Building & Construction, Communication & Media, Education & Children, Entertainment & Recreation, Financial Services, Health Care & Fitness, Manufacturing, Non-Classifiable, Online & Technology, Pet Services, Restaurants & Food, Retail, Service Businesses, Transportation & Storage, Travel, Wholesale & Distributors. Accepted IDs: 1 through 19.
price_maxnumberMaximum asking price.
price_minnumberMinimum asking price.
relocatablebooleanWhen true, filters to relocatable businesses only.
Response
{
  "type": "object",
  "fields": {
    "end_page": "integer, the last page fetched",
    "listings": "array of listing objects with title, url, listing_id, asking_price, location, gross_revenue, cash_flow",
    "start_page": "integer, the starting page number used",
    "total_returned": "integer, count of listings returned"
  },
  "sample": {
    "data": {
      "end_page": 2,
      "listings": [
        {
          "url": "https://www.sunbeltnetwork.com/business-search/business-details/northeast-nj-bio-refinery-59081/",
          "title": "Northeast New Jersey Bio-Refinery Development & Construction",
          "location": "Northeast New Jersey, New Jersey",
          "cash_flow": "$54m",
          "listing_id": "59081",
          "asking_price": "$90m",
          "gross_revenue": "$147m"
        }
      ],
      "start_page": 1,
      "total_returned": 3
    },
    "status": "success"
  }
}

About the sunbeltnetwork.com API

The Sunbelt Network API provides access to business-for-sale listings across 7 endpoints, covering search, listing details, industry categories, and office locations. The search_listings endpoint accepts filters for state, cash flow range, gross revenue range, and keyword, returning asking price, location, and financial summaries for each result. The get_listing_details endpoint retrieves full financials, broker contact data, and descriptive sections for any individual listing URL.

Search and Filter Listings

The search_listings endpoint accepts up to eight input parameters: query (keyword, city, or listing ID), state (full state name like Florida), cf_min/cf_max for cash flow bounds, gr_min/gr_max for gross revenue bounds, and page/limit for pagination control. Results include a listings array of objects, each carrying title, url, listing_id, asking_price, location, gross_revenue, and cash_flow. The response also reports start_page, end_page, and total_returned so you can track multi-page fetches.

Listing Details and Financials

get_listing_details takes a single listing URL (typically sourced from search_listings results) and returns a structured breakdown. The financials object holds keyed values for Asking Price, Cash Flow, Gross Revenue, and Down Payment. The summary object covers attributes like Year Established, Relocatable, and Franchise status. The broker object includes company name, office, email, and phone. The descriptions object maps section headers to full text, which typically contains the business narrative, operations detail, and opportunity overview.

Industry Categories and Office Locations

get_all_categories returns every industry category available on Sunbelt Network — each with a numeric id and a name — which can be used to understand the classification system. Convenience endpoints get_healthcare_listings and get_construction_listings return up to 100 listings in those specific industries without requiring any parameters. The get_locations endpoint lists every Sunbelt office with office_name, state, and url, while get_office_details resolves a single office URL to its full address and phone number.

Common use cases
  • Screen acquisition targets by filtering search_listings for businesses in a specific state with minimum cash flow thresholds
  • Build a deal pipeline dashboard by aggregating listing asking_price, cash_flow, and gross_revenue fields across multiple searches
  • Enrich a CRM with broker contact details pulled from get_listing_details broker.email and broker.phone fields
  • Map regional deal activity by pairing get_locations office data with listing counts from state-filtered searches
  • Monitor the healthcare M&A market using get_healthcare_listings to track available listings and their financial summaries
  • Research franchise availability by filtering get_listing_details results for listings where the summary.Franchise field is set
  • Identify relocation-eligible businesses by checking the summary.Relocatable attribute across a batch of listing detail responses
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Sunbelt Network offer an official developer API?+
Sunbelt Network does not publish a public developer API or documented data feed. Access to structured listing data, financials, and broker information is available through this Parse API.
What financial fields does `get_listing_details` return, and are they always populated?+
The financials object returns Asking Price, Cash Flow, Gross Revenue, and Down Payment as keyed values. In practice, individual listings vary in what the seller or broker has disclosed, so some keys may be absent or show a placeholder like 'Contact for details' rather than a numeric value.
Can I filter `search_listings` by industry category ID?+
The documented search_listings parameters cover query, state, cash flow bounds (cf_min/cf_max), and gross revenue bounds (gr_min/gr_max). Direct filtering by industry category ID is not exposed on that endpoint. The get_all_categories endpoint returns the full category list with numeric IDs, and the get_healthcare_listings and get_construction_listings wrappers provide pre-filtered results for those two industries. You can fork this API on Parse and revise it to add industry-ID filtering to search_listings.
Does the API return sold or off-market listings?+
The API returns active listings as currently shown on Sunbelt Network. There is no sold-listings archive or historical deal data exposed in any of the 7 endpoints. You can fork this API on Parse and revise it to add an endpoint targeting any sold or closed-deal sections if that content becomes accessible.
How does pagination work in `search_listings`?+
You control the starting page with the page parameter and cap the total results with limit (maximum 100 per call). The response returns start_page, end_page, and total_returned so you can determine whether more pages exist and chain subsequent requests with an incremented page value.
Page content last updated . Spec covers 7 endpoints from sunbeltnetwork.com.
Related APIs in MarketplaceSee all →
bizbuysell.com API
Search for businesses available for sale across multiple categories and view detailed information about specific listings on BizBuySell.com. Browse business categories to explore different industries and find opportunities that match your investment interests.
mergernetwork.com API
Search and discover businesses for sale, real estate properties, land, commercial space, and funding opportunities across multiple categories and locations, while accessing detailed financial information and contact details for each listing. Find new market arrivals, filter by industry (including healthcare), and explore specialized deals in oil & gas, financial assets, and wanted listings all from a single platform.
canada.businessesforsale.com API
Search and browse businesses for sale and franchise opportunities across Canada, retrieving detailed listing information to find investment opportunities that match your interests. Explore comprehensive data on available businesses and franchises to make informed decisions about potential acquisitions.
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.
flippa.com API
Search and browse digital assets like websites, domains, and SaaS businesses listed on Flippa's marketplace, with detailed filtering by country and listing details. Access comprehensive information on thousands of digital business listings to find investment opportunities or monitor the market.
ibba.org API
Search and find professional business brokers from the IBBA directory by location or name, accessing their contact information, business details, and specialties across over 3,000 verified profiles. Discover brokers in your area or filter by geographic regions and service specialties to connect with the right professional for your business needs.
search.sunbiz.org API
Search the Florida Sunbiz corporate registry to find detailed business registration information by company name, officer, address, or EIN, and retrieve complete entity details including filing history, registered agents, and officer names.
yellowpages.com API
Search and retrieve business listings, contact info, hours, categories, and customer reviews from YellowPages.com. Browse by category or location across the US.