Discover/Sedo API
live

Sedo APIsedo.com

Access Sedo domain marketplace data: featured listings, live auctions, keyword search, TLD list, and currency exchange rates via a single structured API.

Endpoint health
verified 7d ago
list_featured_domains
get_exchange_rates
get_tld_list
list_auction_domains
search_domains
5/5 passing latest checkself-healing
Endpoints
5
Updated
21d ago

What is the Sedo API?

The Sedo API covers 5 endpoints that surface domain marketplace data from sedo.com, including current bid prices, auction countdowns, and keyword-matched domain names. Use list_featured_domains to retrieve active buy-now listings with price, title, and description, or list_auction_domains to pull live auction inventory with time remaining and estimated close. Each endpoint returns structured JSON ready for domain research tools, portfolio trackers, or market monitors.

Try it
Two-letter country code to filter featured listings.
Language code for response content.
api.parse.bot/scraper/dfc54b86-90be-47a9-bb23-16f898fc1dd1/<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/dfc54b86-90be-47a9-bb23-16f898fc1dd1/list_featured_domains?country=US&language=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 sedo-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.sedo_domain_marketplace_api import Sedo, FeaturedDomain, AuctionDomain, DomainMatch, Tld, ExchangeRate

sedo = Sedo()

# List featured premium domains for the US market
for domain in sedo.featureddomains.list(country="US"):
    print(domain.domain_name, domain.price, domain.link)

# List active auction domains
for auction in sedo.auctiondomains.list():
    print(auction.domain_name, auction.price, auction.time_left)

# Search for domains by keyword
result = sedo.domainmatches.find(keyword="ai", page=1)
print(result.count, result.keyword, result.agent_name)
for name in result.domain_names:
    print(name)

# Get all available TLDs
for tld in sedo.tlds.list():
    print(tld.id, tld.tld, tld.code, tld.special_agreement)

# Get current exchange rates
rates = sedo.exchangerates.current()
print(rates.date, rates.currencies)
All endpoints · 5 totalmissing one? ·

Retrieve featured domain listings from the Sedo marketplace. Each listing includes the domain name, asking price, a detail link, and a description containing traffic and language metadata. Results vary by country code; some codes may yield fewer or no listings. The full set of featured domains is returned in one response.

Input
ParamTypeDescription
countrystringTwo-letter country code to filter featured listings.
languagestringLanguage code for response content.
Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of listings returned",
    "source": "string, always 'featured'",
    "listings": "array of domain listing objects with domain_name, price, title, link, description"
  },
  "sample": {
    "data": {
      "count": 100,
      "source": "featured",
      "listings": [
        {
          "link": "https://sedo.com/search/details/?domain=liquor.mx&tracked=&partnerid=&language=us&origin=homepage",
          "price": "500,000 USD",
          "title": "liquor.mx 500,000 USD",
          "description": "Price: 500,000 USD <br /> Traffic: -- <br /> Domain Language: English",
          "domain_name": "liquor.mx"
        }
      ]
    },
    "status": "success"
  }
}

About the Sedo API

Featured and Auction Listings

list_featured_domains returns an array of domain objects — each with domain_name, price, title, link, and description — filtered by an optional two-letter country code and language parameter. Verified country values include US and DE; some codes like GB may return reduced or empty result sets. list_auction_domains returns the same core fields plus time_left, giving you the countdown to auction close alongside current bid price. Both endpoints expose a count field and a source string (featured or auctions) for quick validation.

Domain Search

search_domains accepts a keyword string and optional price_start / price_end integers to filter by price range (pass 0 to indicate no bound). Pagination is available via the page parameter. The response returns domain_names as a flat array of matching domain strings rather than full listing objects, so pair it with list_featured_domains or list_auction_domains when you need price or traffic data for specific names. The response also includes an agent object with broker name and image, and echoes back the keyword used.

TLDs and Exchange Rates

get_tld_list returns every TLD available on the Sedo marketplace as an array of objects with id, code, tld, notice, and specialAgreement fields — useful for building TLD-aware filters in domain acquisition tools. get_exchange_rates returns a date field (YYYY-MM-DD) and a nested currencies object keyed by source currency, each containing conversion rates to target currencies. These rates reflect the conversions Sedo applies to domain pricing and are not live forex feeds.

Reliability & maintenanceVerified

The Sedo API is a managed, monitored endpoint for sedo.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when sedo.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 sedo.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
7d 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 Sedo auction domains with time_left to alert on listings approaching close
  • Build a domain valuation dashboard using featured listing prices across US and DE markets
  • Filter search_domains by price_start and price_end to surface affordable keyword-matched names
  • Populate a TLD selector UI from the full get_tld_list response
  • Convert domain prices between currencies using get_exchange_rates for multi-currency portfolio tracking
  • Aggregate auction and featured listing counts over time to identify inventory trends on Sedo
  • Cross-reference keyword search results with auction listings to find negotiable buy-now alternatives
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 Sedo have an official developer API?+
Yes. Sedo offers an official partner API documented at https://sedo.com/us/services/broker-service/sedo-api/. It is aimed at domain registrars and resellers and requires a formal partnership agreement. The Parse API provides structured access to publicly available Sedo marketplace data without requiring that partnership.
What does list_auction_domains return beyond a basic listing?+
It returns the same core fields as featured listings — domain_name, price, title, link, and description — plus a time_left field showing the remaining auction duration and an estimated end time. This makes it the right endpoint when you need to track bid deadlines rather than static buy-now prices.
Does search_domains return price or traffic data alongside domain names?+
No. search_domains returns only a flat domain_names array, the keyword used, a result count, and a broker agent object. Price and traffic details are not included in search results. To get that data, take the domain names from the search response and cross-reference with list_featured_domains or list_auction_domains.
Does the API cover individual domain detail pages, such as full traffic stats or seller history?+
Not currently. The API covers featured listings, auction listings, keyword search, TLD metadata, and exchange rates. Individual domain detail pages with full traffic history, seller profiles, or appraisal data are not included. You can fork this API on Parse and revise it to add an endpoint targeting individual domain detail responses.
Are featured listings available for all country codes?+
Not reliably. The list_featured_domains endpoint accepts a country parameter, but only US and DE are verified to return consistent results. Other codes such as GB may return fewer listings or none at all, depending on what Sedo surfaces for that region.
Page content last updated . Spec covers 5 endpoints from sedo.com.
Related APIs in MarketplaceSee all →
auctions.godaddy.com API
Search and browse domain auction listings on GoDaddy Auctions, including expired domains and closeout (Buy It Now) listings. Retrieve current bid prices, bid counts, auction end times, domain valuations, and backlink metrics across all active auction types.
namecheap.com API
Search for available domain names, check their registration status, and browse TLD pricing across different extensions. Discover discounted domains on the marketplace and explore hosting bundles to find the perfect combination for your website needs.
dotdb.com API
Search domains and uncover keyword insights to research competitor strategies and domain market intelligence. Get detailed domain metadata, keyword reports, and pricing information to inform your SEO and business decisions.
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.
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.
auction.com API
auction.com API
etsy.com API
Discover what shoppers are searching for on Etsy by accessing real-time trending keywords and popular search terms that can help you identify market demand and optimize your product listings. Get instant access to autocomplete suggestions and "Popular right now" trends to stay ahead of customer interests and improve your shop's visibility.