Discover/BusinessesForSale API
live

BusinessesForSale APIcanada.businessesforsale.com

Search Canadian business listings and franchise opportunities via API. Get asking price, revenue, cash flow, broker name, and full descriptions.

Endpoint health
verified 4d ago
search_businesses
get_listing_details
search_franchises
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the BusinessesForSale API?

This API exposes 3 endpoints for querying businesses for sale and franchise opportunities across Canada from canada.businessesforsale.com. The search_businesses endpoint returns paginated listings with up to 9 fields per result — including asking price, revenue, cash flow, location, and tags — while get_listing_details retrieves the full record for a single listing, and search_franchises covers franchise opportunities with minimum investment data.

Try it
Page number for pagination
Sort order for results
Keywords to search for (e.g. 'pizza', 'restaurant', 'salon')
Maximum asking price in CAD
Minimum asking price in CAD
Region/Province ID to filter by
Category ID to filter by
api.parse.bot/scraper/34cac26e-45d4-4ffe-9df6-d1f95836ceb5/<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 GET 'https://api.parse.bot/scraper/34cac26e-45d4-4ffe-9df6-d1f95836ceb5/search_businesses?page=1&sort=Score&keywords=restaurant&max_price=500000&min_price=10000&region_id=ON&category_id=55' \
  -H 'X-API-Key: $PARSE_API_KEY'
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 canada-businessesforsale-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.

"""Walkthrough: Canada BusinessesForSale SDK — search listings, drill into details, explore franchises."""
from parse_apis.canada_businessesforsale_api import BusinessesForSale, Sort, ListingNotFound

client = BusinessesForSale()

# Search for restaurant businesses sorted by price
for listing in client.listingsummaries.search(keywords="restaurant", sort=Sort.PRICE_ASC, limit=3):
    print(listing.title, listing.asking_price, listing.location)

# Drill into the first result for full details
summary = client.listingsummaries.search(keywords="pizza", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.asking_price, detail.revenue, detail.cash_flow)
    print(detail.description[:120])

# Handle a listing that no longer exists
try:
    gone = client.listingdetails.get(url="https://canada.businessesforsale.com/canadian/nonexistent-listing.aspx")
    print(gone.title)
except ListingNotFound as exc:
    print(f"Listing gone: {exc.url}")

# Search franchise opportunities
for franchise in client.franchises.search(limit=5):
    print(franchise.title, franchise.min_investment, franchise.url)

print("exercised: listingsummaries.search / details / listingdetails.get / franchises.search")
All endpoints · 3 totalmissing one? ·

Search for business listings in Canada with optional filters. Returns paginated results with basic listing information including title, location, pricing, revenue, cash flow, and tags. Results are ordered by relevance (Score) by default. Each result includes a URL that can be passed to get_listing_details for full information.

Input
ParamTypeDescription
pageintegerPage number for pagination
sortstringSort order for results
keywordsstringKeywords to search for (e.g. 'pizza', 'restaurant', 'salon')
max_priceintegerMaximum asking price in CAD
min_priceintegerMinimum asking price in CAD
region_idstringRegion/Province ID to filter by
category_idstringCategory ID to filter by
Response
{
  "type": "object",
  "fields": {
    "url": "string, the search URL used",
    "page": "integer, current page number",
    "results": "array of business listing objects with title, url, location, asking_price, revenue, cash_flow, description, tags"
  },
  "sample": {
    "data": {
      "url": "https://canada.businessesforsale.com/canadian/search/businesses-for-sale?Keywords=restaurant&Page=1&IncludeBusinesses=true&CanonicalCountryCode=CA",
      "page": 1,
      "results": [
        {
          "url": "https://canada.businessesforsale.com/canadian/south-indian-restaurant-for-sale-near-square-one.aspx",
          "tags": [
            "New",
            "Business"
          ],
          "title": "South Indian Restaurant For Sale, Near Square One",
          "revenue": "$1M - $5M(CAD)",
          "location": "Mississauga, Ontario, Canada",
          "cash_flow": "On request",
          "description": "",
          "asking_price": "$500K - $1M(CAD)"
        }
      ]
    },
    "status": "success"
  }
}

About the BusinessesForSale API

Searching Business Listings

The search_businesses endpoint accepts keyword, price range (min_price, max_price in CAD), region_id, and category_id filters alongside a sort parameter and page for pagination. Each result in the results array includes title, url, location, asking_price, revenue, cash_flow, description, and tags. The url field from each result is the input for the detail endpoint, so a typical workflow is search first, then fetch details for specific listings.

Retrieving Full Listing Details

get_listing_details takes a single required url parameter (sourced from search_businesses results) and returns the complete listing record: listing_id, title, location, asking_price, revenue, cash_flow, broker_name, and a full description. Financial fields such as revenue and cash flow return the string 'Undisclosed' when the seller has not published that information, which is common for privately held businesses.

Searching Franchise Opportunities

search_franchises operates independently of the business search and returns franchise records with title, url, description, and min_investment. It accepts keywords to narrow results and page for pagination. Without keywords it returns all available franchise listings on the site, making it straightforward to build a full franchise index. Note that franchise results do not include revenue or cash flow fields — only minimum investment is exposed.

Reliability & maintenanceVerified

The BusinessesForSale API is a managed, monitored endpoint for canada.businessesforsale.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when canada.businessesforsale.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 canada.businessesforsale.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
4d ago
Latest check
3/3 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
  • Build a deal-sourcing dashboard that filters Canadian businesses by max_price and category_id to surface acquisition targets in specific sectors.
  • Monitor asking price trends for a given region_id by periodically running search_businesses and storing asking_price over time.
  • Aggregate broker activity by extracting broker_name from multiple get_listing_details calls to identify the most active brokers in a province.
  • Create a franchise discovery tool that surfaces min_investment and description from search_franchises to help prospective franchisees compare entry costs.
  • Cross-reference revenue and cash_flow fields from get_listing_details to calculate rough valuation multiples across listings in a category.
  • Feed listing data into an investment screening tool that flags listings where both revenue and cash_flow are not 'Undisclosed' for deeper analysis.
  • Pipe tags and location fields from search_businesses into a mapping or BI tool to visualise business-for-sale density by region and sector.
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 canada.businessesforsale.com have an official developer API?+
BusinessesForSale.com does not publish a documented public developer API for direct use. This Parse API provides structured programmatic access to the Canadian listings data.
What does get_listing_details return that search_businesses does not?+
get_listing_details adds listing_id and broker_name fields and returns the full description text, which is truncated in search results. Both endpoints return asking_price, revenue, cash_flow, and location, but the detail endpoint is the only way to retrieve the broker contact name and the complete listing narrative.
How are undisclosed financials handled in the response?+
When a seller has not published revenue or cash flow, those fields return the string 'Undisclosed' rather than null or an empty string. Your code should check for this value before attempting numeric comparisons or calculations on those fields.
Does the API support filtering by city or postal code rather than just region/province?+
Not currently. search_businesses filters by region_id (province-level) and keywords; there is no city or postal code parameter. The location string in results does include city-level text. You can fork this API on Parse and revise it to add a city-level filter endpoint if finer geographic filtering is needed.
Can I retrieve contact details such as seller phone number or email through the API?+
Not currently. The API returns broker_name from get_listing_details but does not expose phone numbers, email addresses, or any direct contact information, as those are gated behind inquiry forms on the site. You can fork this API on Parse and revise it to add an endpoint that captures any publicly visible contact fields.
Page content last updated . Spec covers 3 endpoints from canada.businessesforsale.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.
yellowpages.ca API
Search for businesses across Canada and retrieve detailed information including contact details, ratings, reviews, and website data. Supports keyword and location-based discovery of local businesses for research, analysis, and data enrichment use cases.
rentals.ca API
Search and browse rental listings across Canada by city or neighbourhood, and view detailed property information including prices, amenities, and availability. Find your next home by filtering thousands of rental properties on Rentals.ca in real-time.
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.
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.
realtor.ca API
Search Canadian real estate listings and retrieve detailed property information including photos, prices, descriptions, and agent details from REALTOR.ca. Browse available properties with comprehensive listing data across Canada.
kijiji.ca API
Search and browse Kijiji listings across categories like rentals, pets, and jobs, while viewing detailed information about specific ads along with available locations and categories. Filter through thousands of Canadian classifieds to find exactly what you're looking for in your area.
ebay.ca API
Search and compare eBay Canada listings with detailed item information, pricing history from completed sales, and seller profiles to make informed buying decisions. Discover current deals, browse product categories, and view seller feedback and ratings all in one place.