v51

OpenAPI 3.0.0raw.githubusercontent.com2026-08-01267339950.6 KB
Domains: WHOIS

Create WHOIS profile

Create WHOIS contact profile.

Use this endpoint to add new contact information for domain registration.

post/api/domains/v1/whois

Request body

tldstring required

TLD of the domain (without leading dot)

countrystring required

ISO 3166 2-letter country code

entity_type'individual' | 'organization' required

Legal entity type

tld_detailsobject

TLD details

whois_detailsobject required

WHOIS details

Example request

{
  "tld": "com",
  "country": "NL",
  "entity_type": "individual"
}

Response

Success response

idinteger

WHOIS Profile ID

tldstring

TLD to which contact profile can be applied to

countrystring

ISO 3166 2-letter country code

entity_type'individual' | 'organization'

WHOIS profile entity type

whois_detailsobject

WHOIS profile details

tld_detailsobject

TLD details

created_atstring date-time
updated_atstring date-time

Example response

{
  "id": 746263,
  "tld": "com",
  "country": "NL",
  "entity_type": "individual",
  "whois_details": {
    "first_name": "John",
    "last_name": "Doe",
    "email": "john@doe.tld"
  },
  "created_at": "2025-02-27T11:54:22Z",
  "updated_at": "2025-03-19T11:54:22Z"
}