Discover/Flippa API
live

Flippa APIflippa.com

Search and filter Flippa listings: websites, SaaS, domains, e-commerce, and FBA businesses for sale. Returns price, multiples, category, and seller location.

Endpoint health
verified 23h ago
list_domains_for_sale
list_businesses_by_country
list_businesses_for_sale
search_listings
get_listing_detail
5/5 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the Flippa API?

This API exposes 5 endpoints for browsing and searching Flippa's marketplace of digital assets for sale. The search_listings endpoint covers the full catalog — websites, SaaS products, domains, e-commerce stores, FBA businesses, and apps — returning fields like price, multiple, property_type, category, monetization, and country_name. Dedicated endpoints narrow results to domains or businesses, with filtering by price range, profit multiple, and seller country.

Try it
Page number for pagination.
Sort order for results.
Search keyword to match against listing titles and descriptions.
Maximum asking price in USD.
Minimum asking price in USD.
Maximum profit multiple.
Minimum profit multiple.
Whether to apply strict client-side filtering to enforce price and multiple criteria. Recommended because Flippa may include sponsored listings outside filter ranges.
Comma-separated property types to filter by. Accepted values include: website, domain, fba, saas, ecommerce_store, plugin_and_extension, ai_apps_and_tools, youtube, ios_app, android_app, game, crypto_app, social_media, newsletter, service_and_agency, service, projects_and_concepts, other.
Seller country code (e.g., 'us', 'uk', 'ca', 'au').
api.parse.bot/scraper/43cd9efb-4e43-4aaa-9d10-9033118cdc30/<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/43cd9efb-4e43-4aaa-9d10-9033118cdc30/search_listings?page=1&sort=most_relevant&query=saas&price_max=500000&price_min=10000&multiple_max=5&multiple_min=1&property_type=website&seller_location=us' \
  -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 flippa-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.flippa_api import Flippa, Listing, ListingDetail, Sort

flippa = Flippa()

# Search for SaaS listings sorted by most recent
for listing in flippa.listings.search(query="saas", sort=Sort.MOST_RECENT, limit=5):
    print(listing.title, listing.price, listing.property_type, listing.country_name)

# List domains for sale
for domain in flippa.listings.list_domains(sort=Sort.MOST_RELEVANT, limit=3):
    print(domain.title, domain.price, domain.property_name)

# List businesses filtered by price and location
for biz in flippa.listings.list_businesses(price_min=50000, price_max=200000, seller_location="us", limit=3):
    print(biz.title, biz.price, biz.multiple, biz.category)

# Get the canonical URL for a specific listing
detail = flippa.listingdetails.get(listing_id="12668272")
print(detail.listing_id, detail.url)
All endpoints · 5 totalmissing one? ·

Full-text search across all Flippa marketplace listings with filtering by property type, price range, profit multiple, and seller location. Returns paginated results including sponsored and early-access listings separately. Flippa may include sponsored listings outside filter ranges; the manual_filter option applies strict client-side enforcement of price and multiple criteria.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order for results.
querystringSearch keyword to match against listing titles and descriptions.
price_maxnumberMaximum asking price in USD.
price_minnumberMinimum asking price in USD.
multiple_maxnumberMaximum profit multiple.
multiple_minnumberMinimum profit multiple.
manual_filterbooleanWhether to apply strict client-side filtering to enforce price and multiple criteria. Recommended because Flippa may include sponsored listings outside filter ranges.
property_typestringComma-separated property types to filter by. Accepted values include: website, domain, fba, saas, ecommerce_store, plugin_and_extension, ai_apps_and_tools, youtube, ios_app, android_app, game, crypto_app, social_media, newsletter, service_and_agency, service, projects_and_concepts, other.
seller_locationstringSeller country code (e.g., 'us', 'uk', 'ca', 'au').
Response
{
  "type": "object",
  "fields": {
    "results": "array of listing objects with fields: id, title, price, multiple, property_type, listing_url, country_name, category, monetization, profit_average, revenue_average, established_at, formatted_age_in_years",
    "metadata": "object with totalResults count",
    "early_access_listings": "array of early-access listing objects with the same structure as results"
  },
  "sample": {
    "data": {
      "results": [
        {
          "id": "12806224",
          "price": 572072,
          "title": "Profitable DTC Sports Recovery Brand",
          "category": "Health and Beauty",
          "multiple": 1.8,
          "listing_url": "https://flippa.com/12806224",
          "country_name": "Singapore",
          "monetization": "Dropshipping",
          "property_type": "Ecommerce",
          "established_at": 3,
          "profit_average": "26,485",
          "revenue_average": 80129,
          "formatted_age_in_years": "3 years"
        }
      ],
      "metadata": {
        "totalResults": 10000
      },
      "early_access_listings": [
        {
          "id": "12996501",
          "price": 129000,
          "title": "An 18-yr craft & hobby Shopify brand",
          "category": "Hobbies and Games",
          "multiple": 0,
          "listing_url": "https://flippa.com/12996501",
          "country_name": "UT, United States",
          "monetization": "Dropshipping",
          "property_type": "Ecommerce"
        }
      ]
    },
    "status": "success"
  }
}

About the Flippa API

Endpoints and Data Coverage

The API provides five endpoints. search_listings accepts a free-text query plus filters for price_min, price_max, multiple_min, multiple_max, and a sort order. It returns a results array, a metadata.totalResults count, and a separate early_access_listings array for listings not yet publicly active. The manual_filter boolean parameter enforces strict matching against price and multiple criteria on the returned set, which is recommended because Flippa may include sponsored listings outside the requested filter range.

Domain and Business Endpoints

list_domains_for_sale is scoped to domain-name listings and returns id, title, price, property_name, property_type, listing_url, and country_name. list_businesses_for_sale covers everything else — websites, SaaS, e-commerce, FBA, apps, and services — and adds multiple, category, and monetization fields. It applies strict filtering by default so results match the supplied price_min/price_max and multiple_min/multiple_max bounds. list_businesses_by_country takes a required ISO country_code (e.g., 'us', 'au') and returns the same business listing structure filtered to that seller location.

Listing Detail and Pagination

get_listing_detail accepts a numeric listing_id — obtained from any of the listing endpoints — and returns the canonical URL including the full listing slug. All list endpoints support a page integer parameter for pagination. The metadata object on each response carries the totalResults count, which reflects the total matching listings across all pages, not just the current page.

Reliability & maintenanceVerified

The Flippa API is a managed, monitored endpoint for flippa.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when flippa.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 flippa.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
23h ago
Latest check
5/5 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
  • Monitor new SaaS businesses listed on Flippa within a target price range using price_min and price_max
  • Build a deal-sourcing dashboard filtered by seller country using list_businesses_by_country with ISO country codes
  • Track profit multiple distributions across Flippa's e-commerce category using the multiple field
  • Identify domain name listings for acquisition research via list_domains_for_sale
  • Alert on early-access listings before they reach the main marketplace using the early_access_listings array
  • Construct canonical listing URLs for deep-linking by pairing listing_id values from search results with get_listing_detail
  • Compare monetization models across listings using the monetization and category fields returned by list_businesses_for_sale
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 Flippa have an official public developer API?+
Flippa does not currently offer a public developer API for third-party access to its marketplace data.
What does the `multiple` field represent, and is it always populated?+
The multiple field is the profit multiple used to price the listing — asking price divided by annual or monthly profit, depending on how the seller listed it. It is present on business listings but is not guaranteed to be populated for every listing; domain listings in particular often lack revenue data and may not include it.
Does `search_listings` always return only results matching my price and multiple filters?+
Not automatically. Flippa may include sponsored listings outside the requested filter range in its results. Setting the manual_filter parameter to true applies strict client-side enforcement of price_min, price_max, multiple_min, and multiple_max to remove non-matching entries from the returned set.
Can I retrieve full listing details — financials, traffic data, or due-diligence documents — through this API?+
Not currently. The API returns summary-level fields: price, multiple, category, monetization, property_type, country_name, and the listing URL. Detailed financials, traffic analytics, and seller-provided documents are not exposed. You can fork the API on Parse and revise it to add an endpoint that retrieves additional listing detail fields.
How does pagination work across the listing endpoints?+
All listing endpoints accept a page integer parameter. The metadata object in each response includes totalResults, reflecting the full count of matching listings. Increment page to walk through additional result sets. Page size is fixed and not configurable through the current parameters.
Page content last updated . Spec covers 5 endpoints from flippa.com.
Related APIs in MarketplaceSee all →
landflip.com API
Search for land listings on LandFlip and retrieve comprehensive property details, including acreage, pricing, and owner financing terms. Filter by state, price range, and acreage to browse available properties.
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.
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.
shpock.com API
Search and browse products listed on Shpock.com, view detailed listing information and seller profiles, and explore all available marketplace categories. Find what you're looking for by searching inventory, checking seller histories, and discovering related items from individual merchants.
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.
afternic.com API
Retrieve domain listing details from Afternic, including pricing, availability, and sale configuration for any given domain name. Look up whether a domain is listed for sale and access its current asking price and auction information programmatically.
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.
sunbeltnetwork.com API
Search and browse business-for-sale listings across the Sunbelt Network. Filter by industry, location, price range, cash flow, and more. Retrieve detailed financial summaries, business descriptions, and broker contact information for any listing, and look up Sunbelt office locations nationwide.
Flippa Marketplace API – Listings & Domains · Parse