v1
latestOpenAPI 3.1.02026-07-2671111437.2 KBSearch
Searches for domain name suggestions based on a keyword or term. Important: Do not encode the : in the path. Use /core/v1/domains:search, not /core/v1/domains%3Asearch.
Discovery endpoint: Returns SearchResult fields — purchaseType, purchasePrice, premium, purchasable.
Recommendation: Set purchaseType to registration. Most resellers restrict results to domains with a purchaseType of registration to ensure predictable pricing and immediate fulfillment. Other purchase types (such as aftermarket) can introduce higher costs and non-instant transactions that may be delayed or declined by third parties. With purchaseType: registration, domains that do not match the filter are omitted from results (unlike Check Availability, which returns them with purchasable: false).
When results show premium: true or a non-registration purchaseType, follow the Domain pricing guide before calling Create Domain. For all types, re-check with Check Availability immediately before create — prices and availability can change.
Request body
Example request
{
"keyword": "mydomain",
"timeout": 2500,
"tldFilter": [
"com",
"net",
"org"
]
}Response
A successful response.
Example response
{
"results": [
{
"domainName": "example.com",
"premium": true,
"purchasable": true,
"purchasePrice": 10.99,
"renewalPrice": 10.99,
"sld": "example",
"tld": "com"
}
]
}