---
title: "List Domains"
method: GET
path: "/core/v1/domains"
tags: ["Domains"]
---

# List Domains

`GET /core/v1/domains`

Lists all domains in your account (basic details for each domain).

## Query parameters

- `perPage` integer — Maximum number of records to return per page for paginated list endpoints.
- `page` integer
- `sort` string
- `dir` string
- `domainName` string
- `tld` string
- `locked` boolean
- `createDate` string
- `createDateStart` string
- `createDateEnd` string
- `expireDate` string
- `expireDateStart` string
- `expireDateEnd` string
- `privacyEnabled` boolean
- `isPremium` boolean
- `autorenewEnabled` boolean
- `orderId` integer
- `includeRenewalPrice` boolean

## Response `200`

A successful response.

- ListDomainsResponse — ListDomainsResponse is the response from a list request, it contains the paginated list of Domains.
  - `domains` DomainResponsePayload[], required — Domains is the list of domains in your account.
    - `domainName` string, required — The punycode-encoded value of the domain name.
    - `createDate` string, date-time, required — The date and time when the domain was created at the registry.
    - `expireDate` string, date-time, required — The date and time when the domain will expire.
    - `autorenewEnabled` boolean, required — Indicates whether the domain is set to renew automatically before expiration.
    - `locked` boolean, required — Indicates if the domain is **transfer locked**, preventing transfers to another registrar.
    - `locks` string[] — List of all registry locking statuses currently applied to the domain. Use this to see which locks are active (e.g. clientTransferProhibited, clientHold). Empty when the domain has no locks applied.
    - `transferLockExpiresAt` string, date-time — When present, the domain has an active ICANN-mandated transfer lock (new registration, transfer-in, or material registrant contact change) that blocks client unlock via the API until this time. When omitted, there is no active policy transfer lock with a known expiry — the domain may still be locked (`locked: true`) due to a voluntary user lock. Does not represent RegistrarLock, AccountLock, verification holds, trademark-claim locks, or admin TransferLock with no expiry date.
    - `privacyEnabled` boolean, required — Indicates if Whois Privacy is enabled for this domain.
    - `contacts` Contacts, required — Contacts stores the contact information for the roles related to domains.
      - `admin` Contact — Contact contains all relevant contact data for a domain registrant. This schema is used for API responses and may contain null values for legacy data. For creating or updating contacts, use ContactRequest which enforces all validation requirements.
        - `firstName` string, nullable — First name of the contact.
        - `lastName` string, nullable — Last name of the contact.
        - `companyName` string, nullable — Company name of the contact. Leave blank if the contact is an individual, as some registries may assume it is a corporate entity otherwise.
        - `address1` string, nullable — The first line of the contact's address.
        - `address2` string, nullable — The second line of the contact's address (optional).
        - `city` string, nullable — City of the contact's address.
        - `state` string, nullable — State or Province of the contact's address.
        - `zip` string, nullable — ZIP or Postal Code of the contact's address.
        - `country` string, nullable — Country code for the contact's address. Must be an ISO 3166-1 alpha-2 country code.
        - `email` string, nullable — Email address of the contact. Must be a valid email format. The validation is performed against the `addr-spec` syntax in [RFC 822](https://datatracker.ietf.org/doc/html/rfc822)
        - `phone` string, nullable — Phone number of the contact. Should follow the E.164 international format: "+[country code][number]".
        - `fax` string, nullable — Fax number of the contact. Should follow the E.164 international format: "+[country code][number]".
        - `isVerified` boolean — Indicates if the contact has been verified as per ICANN requirements. If the value is `false` it indicates that the contact has not completed the required verification process. This property is read-only and will be included in responses but should not be included in requests.
        - `verificationId` integer, nullable — When the contact is unverified, this is the ID of the pending verification record. Use this ID with the resend verification email and verify contact endpoints. Omitted or null when the contact is verified.
      - `billing` Contact — Contact contains all relevant contact data for a domain registrant. This schema is used for API responses and may contain null values for legacy data. For creating or updating contacts, use ContactRequest which enforces all validation requirements.
        - `firstName` string, nullable — First name of the contact.
        - `lastName` string, nullable — Last name of the contact.
        - `companyName` string, nullable — Company name of the contact. Leave blank if the contact is an individual, as some registries may assume it is a corporate entity otherwise.
        - `address1` string, nullable — The first line of the contact's address.
        - `address2` string, nullable — The second line of the contact's address (optional).
        - `city` string, nullable — City of the contact's address.
        - `state` string, nullable — State or Province of the contact's address.
        - `zip` string, nullable — ZIP or Postal Code of the contact's address.
        - `country` string, nullable — Country code for the contact's address. Must be an ISO 3166-1 alpha-2 country code.
        - `email` string, nullable — Email address of the contact. Must be a valid email format. The validation is performed against the `addr-spec` syntax in [RFC 822](https://datatracker.ietf.org/doc/html/rfc822)
        - `phone` string, nullable — Phone number of the contact. Should follow the E.164 international format: "+[country code][number]".
        - `fax` string, nullable — Fax number of the contact. Should follow the E.164 international format: "+[country code][number]".
        - `isVerified` boolean — Indicates if the contact has been verified as per ICANN requirements. If the value is `false` it indicates that the contact has not completed the required verification process. This property is read-only and will be included in responses but should not be included in requests.
        - `verificationId` integer, nullable — When the contact is unverified, this is the ID of the pending verification record. Use this ID with the resend verification email and verify contact endpoints. Omitted or null when the contact is verified.
      - `registrant` RegistrantContact — Contact contains all relevant contact data for a domain registrant. This schema is used for API responses and may contain null values for legacy data. For creating or updating contacts, use RegistrantContactRequest which enforces all validation requirements.
        - `firstName` string, nullable — First name of the contact.
        - `lastName` string, nullable — Last name of the contact.
        - `companyName` string, nullable — Company name of the contact. Leave blank if the contact is an individual. Please be advised that ICANN policy links the "Company Name" field (Organization) in your domain's contact details to its legal ownership. If this field contains information, the listed organization is considered the legal "Registered Name Holder" (domain owner).
        - `address1` string, nullable — The first line of the contact's address.
        - `address2` string, nullable — The second line of the contact's address (optional).
        - `city` string, nullable — City of the contact's address.
        - `state` string, nullable — State or Province of the contact's address.
        - `zip` string, nullable — ZIP or Postal Code of the contact's address.
        - `country` string, nullable — Country code for the contact's address. Must be an ISO 3166-1 alpha-2 country code.
        - `email` string, nullable — Email address of the contact. Must be a valid email format. The validation is performed against the `addr-spec` syntax in [RFC 822](https://datatracker.ietf.org/doc/html/rfc822)
        - `phone` string, nullable — Phone number of the contact. Should follow the E.164 international format: "+[country code][number]".
        - `fax` string, nullable — Fax number of the contact. Should follow the E.164 international format: "+[country code][number]".
        - `isVerified` boolean — Indicates if the contact has been verified as per ICANN requirements. If the value is `false` it indicates that the contact has not completed the required verification process. This property is read-only and will be included in responses but should not be included in requests.
        - `verificationId` integer, nullable — When the contact is unverified, this is the ID of the pending verification record. Use this ID with the resend verification email and verify contact endpoints. Omitted or null when the contact is verified.
      - `tech` Contact — Contact contains all relevant contact data for a domain registrant. This schema is used for API responses and may contain null values for legacy data. For creating or updating contacts, use ContactRequest which enforces all validation requirements.
        - `firstName` string, nullable — First name of the contact.
        - `lastName` string, nullable — Last name of the contact.
        - `companyName` string, nullable — Company name of the contact. Leave blank if the contact is an individual, as some registries may assume it is a corporate entity otherwise.
        - `address1` string, nullable — The first line of the contact's address.
        - `address2` string, nullable — The second line of the contact's address (optional).
        - `city` string, nullable — City of the contact's address.
        - `state` string, nullable — State or Province of the contact's address.
        - `zip` string, nullable — ZIP or Postal Code of the contact's address.
        - `country` string, nullable — Country code for the contact's address. Must be an ISO 3166-1 alpha-2 country code.
        - `email` string, nullable — Email address of the contact. Must be a valid email format. The validation is performed against the `addr-spec` syntax in [RFC 822](https://datatracker.ietf.org/doc/html/rfc822)
        - `phone` string, nullable — Phone number of the contact. Should follow the E.164 international format: "+[country code][number]".
        - `fax` string, nullable — Fax number of the contact. Should follow the E.164 international format: "+[country code][number]".
        - `isVerified` boolean — Indicates if the contact has been verified as per ICANN requirements. If the value is `false` it indicates that the contact has not completed the required verification process. This property is read-only and will be included in responses but should not be included in requests.
        - `verificationId` integer, nullable — When the contact is unverified, this is the ID of the pending verification record. Use this ID with the resend verification email and verify contact endpoints. Omitted or null when the contact is verified.
    - `nameservers` string[], required — The list of nameservers assigned to this domain. If unspecified, it defaults to the account's default nameservers.
    - `renewalPrice` number, double — The cost to renew the domain. This may be required for the RenewDomain operation.
  - `from` integer, required — From is starting record count for current page.
  - `lastPage` integer — LastPage is the identifier for the final page of results. It is only populated if there is another page of results after the current page.
  - `nextPage` integer — NextPage is the identifier for the next page of results. It is only populated if there is another page of results after the current page.
  - `to` integer, required — To is ending record count for current page.
  - `totalCount` integer, required — TotalCount is total number of domains returned for request.

## Other responses

- `400` — Bad request - Invalid input data.
- `401` — Unauthorized.
- `403` — Forbidden - you do not have permission to perform this action.
- `405` — Method not allowed.
- `429` — Rate limit has been exceeded.
- `500` — Internal server error.
- `502` — Bad Gateway
- `504` — Gateway Timeout

---

[API](https://skmtc.dev/name/apis/name-com-core-api.md) · [All operations](https://skmtc.dev/name/apis/name-com-core-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/name/name-com-core-api/revisions/a37d4cbd3991/schema)
