v51

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

Get WHOIS profile list

Retrieve WHOIS contact profiles.

Use this endpoint to view available contact profiles for domain registration.

get/api/domains/v1/whois

Query parameters

tldstring
Example:com

Filter by TLD (without leading dot)

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"
  }
]