namecheap.com APInamecheap.com ↗
Search domain availability, get TLD pricing, browse marketplace auctions, and fetch hosting bundles from Namecheap via a structured JSON API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/145d80b0-7c17-4ae9-adc6-1bc6a9c8a42a/list_tld_prices' \ -H 'X-API-Key: $PARSE_API_KEY'
Get comprehensive pricing for all TLDs (generic and country-code), including registration, renewal, and promotional hints. Returns an array of TLD objects with pricing details.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of TLD pricing objects, each containing Name, Type (GTLD/CCTLD), Pricing (Price, Regular, Renewal, Hint), Categories, and registration year limits"
},
"sample": {
"data": [
{
"IDN": false,
"Name": "ac",
"Type": "CCTLD",
"Pricing": {
"Hint": "54% off 1st year",
"Price": 28.98,
"Regular": 62.98,
"Renewal": 76.98,
"Tooltip": "",
"Duration": 1,
"DurationType": "YEAR",
"AdditionalCost": null,
"AdditionalHint": null,
"RegularAdditionalCost": null
},
"TldsState": "",
"Categories": [
{
"CategoryName": "new",
"SeqNoOfProduct": 170
}
],
"NonRealtime": false,
"ContactEditable": true,
"MaxRegisterYears": 10,
"MinRegisterYears": 1,
"WhoisguardCompatibile": false
}
],
"status": "success"
}
}About the namecheap.com API
The Namecheap API covers 5 endpoints that expose domain availability, TLD registration and renewal pricing, marketplace auction listings, and hosting bundle data from Namecheap.com. The list_tld_prices endpoint alone returns pricing objects for every supported generic and country-code TLD, including registration, renewal, and promotional hint fields. Additional endpoints let you search active auctions by keyword, check specific domain statuses, and retrieve curated marketplace collections.
Domain Search and TLD Pricing
The list_tld_prices endpoint returns an array of TLD pricing objects, each with Name, Type (GTLD or CCTLD), and a Pricing block containing Price, Regular, Renewal, and Hint fields. The Categories field groups each TLD by theme (e.g. business, technology, country). No query parameters are required — the response covers the full TLD catalog in a single call, making it straightforward to build price-comparison tools or populate a domain search interface with current registration costs.
Marketplace Auctions
The search_market_auctions endpoint returns paginated auction listings with fields including name, tld, price, minBid, bidCount, endDate, saleType, status, and domain valuation signals such as estibotValue and goDaddyValue. You can filter results with the keyword parameter, control sort order using ending_soon, price_asc, or price_desc, and control page size with limit. The get_market_home endpoint complements this by returning themed collection objects — heading, slug, and top auction items — from the marketplace homepage, useful for surfacing curated picks like Closeouts or AI-themed domains.
Domain Status and Hosting Bundles
The check_domain_status endpoint accepts a comma-separated domains parameter and returns a status object for each domain, including a status field (e.g. active, notfound) that indicates marketplace availability. This is distinct from a registrar availability check — it reflects listing status within the Namecheap marketplace. The get_hosting_bundles endpoint accepts an optional product parameter (stellar, stellar-plus, or stellar-business) and returns BundleId and BundleProducts arrays with Name, Type (hosting or domains), BundlePrice, and regular pricing for each component in the bundle.
- Build a TLD price-comparison table using registration and renewal fields from
list_tld_prices. - Monitor expiring domain auctions by polling
search_market_auctionssorted byending_soon. - Find undervalued auction domains by comparing
priceagainstestibotValueorgoDaddyValue. - Check whether a specific set of domains is actively listed for sale using
check_domain_status. - Surface themed domain collections (AI, Closeouts) on a landing page using
get_market_home. - Compare hosting plan pricing and bundled domain costs across Stellar tiers using
get_hosting_bundles. - Aggregate CCTLD vs GTLD pricing for a country-specific domain marketplace or registrar comparison tool.
| 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.
Does Namecheap have an official developer API?+
What does `check_domain_status` return, and how is it different from a standard WHOIS check?+
status within the Namecheap marketplace — values like active or notfound — indicating whether the domain is listed for sale there. It does not return WHOIS registration data, expiry dates, or registrant details. You can fork the API on Parse and revise it to add a WHOIS-style endpoint if that data is available from another source.Does the API return bidding history or individual bid records for auctions?+
search_market_auctions endpoint returns aggregate auction data including bidCount, price, minBid, and endDate, but not a per-bid history or bidder identities. You can fork the API on Parse and revise it to add a bid-history endpoint if that data is needed.Are results from `search_market_auctions` paginated, and what controls are available?+
page (page number), limit (items per page), keyword (text filter on domain names), and sort (ending_soon, price_asc, or price_desc). Combine page and limit to walk through large result sets. The keyword filter applies to domain names, not TLD category or other metadata fields.Does the API cover domain backorder or drop-catching listings?+
search_market_auctions, curated homepage collections via get_market_home, and domain status checks. Backorder or drop-catch inventory is not exposed in the current endpoints. You can fork the API on Parse and revise it to add coverage for those listing types.