Discover/GoDaddy API
live

GoDaddy APIauctions.godaddy.com

Search GoDaddy Auctions domain listings via API. Get bid counts, auction prices, GoValue appraisals, backlink metrics, and SEMrush data for expired and closeout domains.

Endpoint health
verified 4d ago
search_auctions
get_closeout_auctions
get_expired_domain_auctions
3/3 passing latest checkself-healing
Endpoints
4
Updated
21d ago

What is the GoDaddy API?

This API exposes 4 endpoints for querying live domain auction data from GoDaddy Auctions, including expired domains, closeout (Buy It Now) listings, and GoValue appraisals. The search_auctions endpoint lets you filter across auction types with keyword queries, sort by bid activity or price, and retrieve per-domain fields like current bid price, valuation, backlink metrics, and SEMrush scores for every result.

Try it
Number of results to return per page.
Search term to filter domains by keyword (e.g. 'tech', 'crypto'). Omitting returns all auctions.
Pagination start offset (0-based).
Comma-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 field and direction. Format: 'field:direction'. Accepted values: 'auctionBids:desc', 'auctionValuationPrice:desc'.
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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/96539f73-10c8-4f95-a21d-9924ea344cb2/search_auctions?limit=5&query=tech&start=0&types=16&sort_by=auctionBids%3Adesc' \
  -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 auctions-godaddy-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.

"""Walkthrough: GoDaddy Auctions SDK — search, filter, and analyze domain auctions."""
from parse_apis.godaddy_auctions_api import GodaddyAuctions, Sort, Types, AuctionNotFound

client = GodaddyAuctions()

# Search for tech-related domain auctions sorted by highest valuation
for auction in client.auctions.search(query="tech", sort_by=Sort.VALUATION_DESC, types=Types.EXPIRED, limit=5):
    print(auction.fqdn, auction.valuation_price, auction.bids)

# Get the first expired domain auction and inspect its enrichments
expired = client.auctions.list_expired(limit=1).first()
if expired:
    print(expired.fqdn, expired.auction_price, expired.end_time)
    print(expired.enrichments.semrush_keyword, expired.enrichments.semrush_search_volume)

# Browse closeout (Buy It Now) domains
for closeout in client.auctions.list_closeout(limit=3):
    print(closeout.fqdn, closeout.auction_price, closeout.valuation_price)

# Handle case where a specific query finds nothing
try:
    result = client.auctions.search(query="xyznonexistent99999", limit=1).first()
    if result:
        print(result.fqdn)
except AuctionNotFound as exc:
    print(f"No auctions found: {exc}")

print("exercised: auctions.search / auctions.list_expired / auctions.list_closeout")
All endpoints · 4 totalmissing one? ·

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. Without a query, returns all auctions across the specified types. Pagination is offset-based via the start parameter.

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'. Accepted 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": 5,
      "items": [
        {
          "bids": 129,
          "fqdn": "784.cc",
          "end_time": "2026-06-11T20:15:00Z",
          "auction_id": 705910535,
          "enrichments": {
            "semrush_total": 19,
            "semrush_ascore": 0,
            "semrush_keyword": "784",
            "semrush_search_volume": 1600
          },
          "auction_type": 16,
          "auction_price": 1002,
          "monthly_traffic": 0,
          "valuation_price": 340,
          "buy_it_now_amount": 0,
          "domain_create_date": "2013-05-07T07:00:00Z",
          "majestic_ref_domains": 1,
          "majestic_ext_back_links": 1
        }
      ],
      "total": 10000
    },
    "status": "success"
  }
}

About the GoDaddy API

Auction Search and Filtering

The search_auctions endpoint is the primary entry point for querying the GoDaddy Auctions marketplace. It accepts a query string to match domains by keyword (e.g. "tech", "crypto"), a types parameter to scope results to specific auction categories — 16 for Expired, 38 for Closeout, and 20 for Expiry — and a sort_by field supporting values like auctionBids:desc to surface the most-contested domains first. Pagination is handled via start (0-based offset) and limit. Each item in the response includes fqdn, auction_id, auction_price, valuation_price, bids, end_time, and enrichment fields covering backlink data and SEMrush metrics.

Expired and Closeout Convenience Endpoints

get_expired_domain_auctions and get_closeout_auctions are scoped equivalents of search_auctions pre-filtered to type 16 and type 38 respectively, both sorted by bid count descending. They accept only a limit parameter, making them useful for polling the most-active listings in each category without constructing a full filter query. Both return the same item shape as the main search endpoint, including pricing and enrichment data.

Domain Appraisal

The get_domain_appraisal endpoint accepts a single domain_name and returns GoDaddy's GoValue estimate alongside a valuationFactors array that breaks down the inputs contributing to the score. This is separate from the valuation_price field surfaced inline on auction items, making it useful for appraising domains that are not currently in an active auction.

Reliability & maintenanceVerified

The GoDaddy API is a managed, monitored endpoint for auctions.godaddy.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when auctions.godaddy.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 auctions.godaddy.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
4d ago
Latest check
3/3 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 expired domain auctions sorted by bid count to identify competitively contested names before they close.
  • Build a domain flipping watchlist by querying search_auctions with category keywords and tracking auction_price changes over time.
  • Enrich a domain lead list with GoValue appraisals using get_domain_appraisal to prioritize acquisition targets.
  • Filter closeout (Buy It Now) listings via get_closeout_auctions to find underpriced domains with no competing bids.
  • Cross-reference valuation_price against auction_price across expired auctions to surface domains trading below GoValue.
  • Aggregate SEMrush and backlink metrics from auction results to score domain authority before bidding.
  • Track end_time values across paginated auction results to build a time-sorted expiry calendar for target domains.
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 GoDaddy offer an official developer API for its auctions marketplace?+
GoDaddy has a public API platform at developer.godaddy.com that covers domain registration and account management, but it does not include a documented public API for the GoDaddy Auctions marketplace, including expired domain listings, bid data, or GoValue appraisals.
What does the `search_auctions` endpoint return beyond the domain name and price?+
Each item in the items array includes fqdn, auction_id, auction_price, valuation_price, bids, end_time, auction_type, and enrichment fields that cover backlink metrics and SEMrush data. The total field in the response reflects the full result count, not just the current page.
Can I retrieve historical auction results or sold domain data?+
Not currently. The API covers active and live auction listings — expired, closeout, and expiry types — along with on-demand GoValue appraisals. Historical sold prices and past auction outcomes are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting historical sale data if that becomes accessible.
Is there a way to watch a specific domain or get auction details by domain name rather than by search?+
The current endpoints do not include a lookup by individual domain name for auction detail. The search_auctions endpoint accepts a query string that filters by keyword, and get_domain_appraisal accepts an exact domain name for valuation only. You can fork this API on Parse and revise it to add a domain-specific auction detail endpoint.
How does pagination work in `search_auctions`?+
Pagination uses a start offset (0-based) combined with limit for page size. The response includes a count field for how many items were returned and a total field for the full matching result set, so you can calculate pages client-side. The endpoint does not use cursor-based pagination.
Page content last updated . Spec covers 4 endpoints from auctions.godaddy.com.
Related APIs in MarketplaceSee all →
auction.com API
auction.com API
sedo.com API
Browse Sedo featured and auction domain listings, search domains by keyword, retrieve the full TLD list, and get current currency exchange rates used for domain pricing.
auctionzip.com API
Search and browse auction lots across the AuctionZip marketplace, view detailed lot information and complete auction catalogs, track historical prices realized, and discover auctioneers by name or location. Access auction schedules, item specifications, seller terms, and top-performing auctioneers.
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.
shopgoodwill.com API
Search and browse Goodwill online listings to find items, view detailed product information, shipping costs, and bid history, plus explore categories and discover featured or newly listed items. Filter results with advanced search options to discover exactly what you're looking for across Goodwill's inventory.
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.
eauctionsindia.com API
Search and browse property auction listings on eAuctions India, including live ongoing auctions and detailed specifications for each property. Get comprehensive auction information like bidding details, property descriptions, and metadata to help you find and monitor properties of interest.
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.