sedo.com APIsedo.com ↗
Access Sedo domain marketplace data: featured listings, live auctions, keyword search, TLD list, and currency exchange rates via a single structured API.
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'
Get featured domain listings with price, domain name, traffic, and description. Results vary by country; some country codes may return fewer or no listings.
| Param | Type | Description |
|---|---|---|
| country | string | Two-letter country code to filter featured listings. Verified working values: US, DE. Some codes (e.g. GB) may return empty results. |
| language | string | Language code for response content. Verified working values: us, de. |
{
"type": "object",
"fields": {
"count": "integer, number of listings returned",
"source": "string, always 'featured'",
"listings": "array of domain objects with domain_name, price, title, link, description"
},
"sample": {
"data": {
"count": 100,
"source": "featured",
"listings": [
{
"link": "https://sedo.com/search/details/?domain=gynoids.ai&tracked=&partnerid=&language=us&origin=homepage",
"price": "Make Offer",
"title": "gynoids.ai Make Offer",
"description": "Price: Make Offer <br /> Traffic: -- <br /> Domain Language: English",
"domain_name": "gynoids.ai"
}
]
},
"status": "success"
}
}About the sedo.com 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.
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.
- 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
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.