Discover/flippa.com API
live

flippa.com APIflippa.com

Access Flippa listings for websites, domains, SaaS businesses, and more. Filter by price, profit multiple, and seller location via 5 structured endpoints.

Endpoints
5
Updated
11d ago
Try it
Page number for pagination.
Sort order: most_relevant, most_recent.
Search keyword.
Maximum asking price.
Minimum asking price.
Maximum profit multiple.
Minimum profit multiple.
Whether to manually filter results to ensure they strictly match price and multiple criter
Comma-separated property types to filter by (e.g., 'website,domain,fba,saas,ecommerce_stor
Seller country code (e.g., 'us', 'uk', 'ca').
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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/43cd9efb-4e43-4aaa-9d10-9033118cdc30/search_listings?page=1&query=shopify' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for listings on Flippa with various filters. Returns paginated results including listing details such as price, multiple, property type, and seller location.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order: most_relevant, most_recent.
querystringSearch keyword.
price_maxnumberMaximum asking price.
price_minnumberMinimum asking price.
multiple_maxnumberMaximum profit multiple.
multiple_minnumberMinimum profit multiple.
manual_filterbooleanWhether to manually filter results to ensure they strictly match price and multiple criteria. Recommended because Flippa may include sponsored listings outside filter ranges.
property_typestringComma-separated property types to filter by (e.g., 'website,domain,fba,saas,ecommerce_store').
seller_locationstringSeller country code (e.g., 'us', 'uk', 'ca').
Response
{
  "type": "object",
  "fields": {
    "results": "array of listing objects with fields such as id, title, price, multiple, property_type, listing_url, country_name, category, monetization, and more",
    "metadata": "object containing totalResults count",
    "early_access_listings": "array of early-access listing objects with the same structure as results"
  },
  "sample": {
    "data": {
      "results": [
        {
          "id": "12668272",
          "price": 3000000,
          "title": "Premium Fashion | Operationally Optimized | US$3.7M Pro Forma Revenue",
          "status": "open",
          "category": "Design and Style",
          "multiple": 3.5,
          "listing_url": "https://flippa.com/12668272",
          "sale_method": "classified",
          "country_name": "CA, United States",
          "property_type": "Ecommerce"
        }
      ],
      "metadata": {
        "totalResults": 10000
      },
      "early_access_listings": []
    },
    "status": "success"
  }
}

About the flippa.com API

The Flippa API exposes 5 endpoints for querying digital asset listings — websites, domains, SaaS businesses, and other online properties — from Flippa's marketplace. The search_listings endpoint accepts keyword queries, price ranges, and profit multiple filters, returning structured objects with fields like price, multiple, property_type, country_name, and listing_url. Dedicated endpoints cover domain-only listings and business listings filtered by country.

Endpoints and Coverage

The API covers five endpoints: search_listings, list_domains_for_sale, list_businesses_for_sale, list_businesses_by_country, and get_listing_detail. All listing endpoints return paginated arrays under a results key alongside a metadata.totalResults count. Each listing object includes fields such as id, title, price, multiple, property_type, listing_url, country_name, and category. A separate early_access_listings array is also returned, containing listings of the same shape that are not yet publicly visible in standard search.

Filtering and Search

search_listings is the most flexible entry point. It accepts a query keyword, price_min/price_max for asking price bounds, multiple_min/multiple_max for profit multiple bounds, and a sort parameter accepting most_relevant or most_recent. A manual_filter boolean flag is available to enforce strict matching on price and multiple criteria — recommended because the underlying data does not always guarantee range adherence otherwise. list_businesses_for_sale applies the same price and multiple filters and accepts a seller_location country code (e.g., us, uk, ca) to narrow results geographically.

Country and Detail Lookups

list_businesses_by_country takes a required ISO country_code and returns all non-domain property types for that country, paginated. get_listing_detail accepts a single listing_id (a numeric string such as 12668272) and returns the canonical URL with the full listing slug alongside the echoed listing_id. This is most useful for resolving a complete URL after obtaining IDs from a broader search call.

Data Shape Notes

All listing arrays share a consistent object structure. The multiple field represents the profit multiple, which is distinct from the raw price. property_type distinguishes between websites, SaaS, apps, and other non-domain asset classes. Domain listings via list_domains_for_sale expose property_name rather than category. Pagination is controlled with an integer page parameter present on every endpoint.

Common use cases
  • Screen acquisition targets by filtering list_businesses_for_sale on price_max and multiple_max to find undervalued digital businesses
  • Monitor new domain inventory with list_domains_for_sale sorted by most_recent to catch freshly listed domains
  • Build a country-specific deal feed using list_businesses_by_country with a target ISO country code
  • Aggregate market pricing data across property types by iterating search_listings with varying price_min/price_max bands
  • Resolve full canonical listing URLs for deep-linking or archiving using get_listing_detail with IDs from search results
  • Track profit multiple distributions across SaaS listings by querying search_listings with multiple_min and multiple_max bounds
  • Identify early-access listings before public availability by consuming the early_access_listings array from any endpoint
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 Flippa have an official developer API?+
Flippa does not currently offer a public developer API for third-party access to its marketplace data.
What does the `get_listing_detail` endpoint return, and when should I use it?+
get_listing_detail returns the canonical listing URL (including the full slug) and the echoed listing_id. It does not return financials, traffic data, or seller details. Use it specifically when you have a numeric ID from a search result and need the complete URL for linking or further lookup.
Why is the `manual_filter` parameter recommended in `search_listings`?+
Price and profit multiple ranges are not always strictly enforced in raw results. Setting manual_filter to true applies a secondary pass to drop listings that fall outside your specified price_min/price_max and multiple_min/multiple_max bounds, giving cleaner output when precise range adherence matters.
Does the API return historical sale prices or completed auction data?+
Not currently. The API covers active listings with asking price and profit multiple fields. Historical sale prices and completed transactions are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting completed listings if that data is needed.
Are seller contact details or due-diligence documents available through the API?+
Not currently. Listing objects include fields like title, price, multiple, property_type, country_name, and listing_url, but seller contact information and attached documents are not part of the response. You can fork this API on Parse and revise it to surface additional listing page fields.
Page content last updated . Spec covers 5 endpoints from flippa.com.
Related APIs in MarketplaceSee all →
mouser.com API
mouser.com API
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
Flippa API – Digital Asset & Business Listings · Parse