Discover/auctions.godaddy.com API
live

auctions.godaddy.com APIauctions.godaddy.com

Access GoDaddy Auctions data: search domain auctions, browse expired and closeout listings, get GoValue appraisals with bid counts, end times, and SEMrush metrics.

Endpoints
4
Updated
10d ago
Try it
Number of results to return per page.
Search term to filter domains by keyword (e.g. 'tech', 'crypto'). Omitting returns all auc
Pagination start offset (0-based).
Comma-separated list of auction type IDs to include. Accepted values: 16 (Expired), 38 (Cl
Sort field and direction. Format: 'field:direction'. Confirmed working values: 'auctionBid
api.parse.bot/scraper/96539f73-10c8-4f95-a21d-9924ea344cb2/<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/96539f73-10c8-4f95-a21d-9924ea344cb2/search_auctions?limit=3&query=tech' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for domain auctions with filters and pagination. Returns auction listings sorted by the specified field, with domain valuation, bid count, backlink metrics, and SEMrush data for each result.

Input
ParamTypeDescription
limitintegerNumber of results to return per page.
querystringSearch term to filter domains by keyword (e.g. 'tech', 'crypto'). Omitting returns all auctions.
startintegerPagination start offset (0-based).
typesstringComma-separated list of auction type IDs to include. Accepted values: 16 (Expired), 38 (Closeout), 20 (Expiry), 39 (Pre-Release). Omitting defaults to all types: '16,38,20,39'.
sort_bystringSort field and direction. Format: 'field:direction'. Confirmed working values: 'auctionBids:desc', 'auctionValuationPrice:desc'.
Response
{
  "type": "object",
  "fields": {
    "count": "integer number of items returned in this response",
    "items": "array of auction listing objects with fields: fqdn, auction_id, auction_price, valuation_price, bids, end_time, auction_type, enrichments (SEMrush/Majestic/Estibot metrics)",
    "total": "integer total number of matching auctions"
  },
  "sample": {
    "data": {
      "count": 1,
      "items": [
        {
          "bids": 47,
          "fqdn": "datacentres.com",
          "end_time": "2026-05-08T17:48:00Z",
          "auction_id": 700628683,
          "enrichments": {
            "semrush_ascore": 5,
            "semrush_keyword": "datacentres",
            "semrush_search_volume": 110
          },
          "auction_type": 38,
          "auction_price": 1025,
          "valuation_price": 9652,
          "auction_price_usd": 1025,
          "buy_it_now_amount": 0,
          "domain_create_date": "2000-04-03T07:00:00Z",
          "majestic_ref_domains": 270,
          "majestic_ext_back_links": 11303
        }
      ],
      "total": 10000
    },
    "status": "success"
  }
}

About the auctions.godaddy.com API

The GoDaddy Auctions API covers 4 endpoints for retrieving domain auction data from auctions.godaddy.com, including active bids, valuations, and backlink metrics. The search_auctions endpoint lets you query across all auction types with keyword filtering, sort controls, and pagination. Separate endpoints isolate expired domain auctions and closeout (Buy It Now) listings, while get_domain_appraisal returns GoDaddy's GoValue estimate for any specific domain.

Auction Search and Filtering

The search_auctions endpoint accepts a query string to filter by keyword (e.g. tech, crypto), a types parameter for comma-separated auction type IDs (16 for Expired, 38 for Closeout, 20 for Expiry), and sort_by in field:direction format — for example auctionBids:desc to surface the most-contested domains first. Results are paginated via start (0-based offset) and limit. Each item in the items array includes fqdn, auction_id, auction_price, valuation_price, bids, end_time, auction_type, and enrichment fields covering backlink and SEMrush data. The response also returns count and total so you can build accurate pagination.

Expired and Closeout Listings

get_expired_domain_auctions and get_closeout_auctions are convenience endpoints that return the same auction listing object shape as search_auctions but pre-filtered to type 16 (expired) and type 38 (closeout / Buy It Now) respectively. Both accept a limit parameter and return count, items, and total. Closeout listings carry a fixed buy-it-now price rather than an active bid ladder, so auction_price reflects the posted price rather than a live bid.

Domain Appraisals

The get_domain_appraisal endpoint takes a single required domain_name and returns GoDaddy's GoValue estimate as a numeric govalue, the canonical domainName, and a valuationFactors array that breaks down the inputs driving the estimate. This is the same valuation data shown in GoDaddy's GoValue tool and can be used independently of any active auction.

Common use cases
  • Monitor auction end times and bid counts to identify closing opportunities on expiring domains.
  • Screen expired domains by keyword using the query param to find brandable names in a target niche.
  • Compare auction_price against valuation_price from search_auctions to surface underpriced listings.
  • Pull GoValue appraisals in bulk via get_domain_appraisal to build a domain portfolio valuation tracker.
  • Filter closeout listings with get_closeout_auctions to find fixed-price domains without entering an auction.
  • Use SEMrush and backlink fields from auction results to prioritize domains with existing organic authority.
  • Track total auction counts over time using the total field to measure supply trends in specific domain categories.
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 GoDaddy have an official public API for auction data?+
GoDaddy has a developer API at https://developer.godaddy.com that covers domain registration, DNS management, and related services, but it does not expose public endpoints for browsing auction listings, bid counts, or GoValue appraisals from auctions.godaddy.com.
What fields does each auction listing item include?+
Each object in the items array from search_auctions, get_expired_domain_auctions, and get_closeout_auctions includes fqdn, auction_id, auction_price, valuation_price, bids, end_time, auction_type, plus enrichment fields covering backlink metrics and SEMrush data. The total field on the response tells you the full result count beyond the current page.
Can I retrieve historical auction results or sold domain prices?+
Not currently. The API covers active auction listings — expired, closeout, and expiry types — along with GoValue appraisals for named domains. Historical sale records and past transaction prices are not included. You can fork this API on Parse and revise it to add an endpoint targeting historical sale data.
How does pagination work in search_auctions?+
Use the start parameter as a 0-based offset and limit to control page size. The response returns count (items in the current page) and total (all matching results), so you can calculate the number of pages and iterate with incremented start values.
Does the API cover domain auctions outside the .com TLD?+
The fqdn field in auction results reflects whatever TLD the listed domain uses, so non-.com domains do appear when present in GoDaddy Auctions inventory. However, there is no TLD-specific filter parameter exposed — filtering by TLD would need to be applied client-side against the fqdn values returned. You can fork this API on Parse and revise it to add a TLD filter parameter if that's a core use case.
Page content last updated . Spec covers 4 endpoints from auctions.godaddy.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.
GoDaddy Auctions API — Domain Listings & Appraisals · Parse