v1
latestOpenAPI 3.1.02026-07-2671111437.2 KBDomain Info
Check Domain Claims
Performs the actual claims check for a specific domain. This endpoint checks if a specific domain has trademark claims against it, returning detailed information about any matching trademarks and their holders. Use this to verify if a domain can be registered without trademark conflicts. Please see the claims flow for information on how to use this endpoint in your domain purchase flow.
post/core/v1/domaininfo/claims/{domain}
Path parameters
domainstring required
Example:tiktok.page
The domain name to check for trademark claims (e.g., 'tiktok.page', 'example.com'). Include the full domain name including the TLD.
Request body
Example request
{
"purchaseType": "registration"
}Response
Domain claims check completed successfully.
Example response
{
"domain": "tiktok.page",
"claims": [
{
"trademark": "TikTok",
"holder": "ByteDance Ltd.",
"jurisdiction": "US",
"registrationNumber": "US123456789",
"description": "Social media platform trademark",
"noticeHtml": "<div class='trademark-notice'>This domain may infringe on the TikTok trademark held by ByteDance Ltd.</div>",
"confidence": 0.95
}
],
"claimsProcessActive": true,
"claimId": "8c3027d30000000000382500785",
"notBefore": "2024-01-15T10:30:00Z",
"notAfter": "2024-01-15T10:30:00Z",
"claimsNotice": "**This domain may infringe on a trademark claim. Proceeding with registration acknowledges that you have received notice of this claim.**"
}