Stay organized with collections
Save and categorize content based on your preferences.
If you have one or more domains registered with Cloud Domains, you can
view a list of your registered domains. This is helpful when you have multiple
domain registrations in a project. You can also view the following details for
each of your domain registrations:
Name
DNS provider or name servers
Renewal status
Renewal date
Privacy protection status of your domain
You can apply filters to customize the list that you want to see.
To list and view registration details for your domains, complete the
following steps.
Permissions required for this task
To perform this task, you must have been granted the following permissions
or the following IAM roles.
Permissions
domains.registrations.get to view details of a single
registration resource
domains.registrations.list to list registration
resources
Roles
roles/domains.viewer
or
roles/domains.admin
Console
In the Google Cloud console, go to the
Cloud Domains page.
You can view the details of a domain or view a domain in Cloud Domains
when it is in the Active or Suspended state. To view domain registration
details, click the domain name.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-26 UTC."],[[["\u003cp\u003eOn September 7, 2023, Squarespace acquired all domain registrations and related customer accounts from Google Domains, impacting Cloud Domains.\u003c/p\u003e\n"],["\u003cp\u003eYou can view a list of your registered domains in Cloud Domains, which is helpful if you have multiple domain registrations in a project.\u003c/p\u003e\n"],["\u003cp\u003eFor each domain registration, you can see details such as the name, DNS provider, renewal status and date, and privacy protection status.\u003c/p\u003e\n"],["\u003cp\u003eYou can list all domain registrations in a project, or view the details of a specific domain using the Google Cloud console, the \u003ccode\u003egcloud\u003c/code\u003e command-line tool, or the API.\u003c/p\u003e\n"],["\u003cp\u003eTo list registrations, you will need to have the permissions \u003ccode\u003edomains.registrations.get\u003c/code\u003e or \u003ccode\u003edomains.registrations.list\u003c/code\u003e, or one of the roles \u003ccode\u003eroles/domains.viewer\u003c/code\u003e or \u003ccode\u003eroles/domains.admin\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# List registered domains\n\n| **Note:** On September 7, 2023 Squarespace acquired all domain registrations and related customer accounts from Google Domains. For more information about how this change affects Cloud Domains, see [Cloud Domains feature deprecations](/domains/docs/deprecations/feature-deprecations), [Renew an expired domain registration](https://support.google.com/a/answer/6152355), and [Squarespace purchase of Google Domains FAQ](/domains/docs/faq).\n\n\u003cbr /\u003e\n\nIf you have one or more domains registered with Cloud Domains, you can\nview a list of your registered domains. This is helpful when you have multiple\ndomain registrations in a project. You can also view the following details for\neach of your domain registrations:\n\n- Name\n- DNS provider or name servers\n- Renewal status\n- Renewal date\n- Privacy protection status of your domain\n\nYou can apply filters to customize the list that you want to see.\n\nTo list and view registration details for your domains, complete the\nfollowing steps.\n\n#### Permissions required for this task\n\nTo perform this task, you must have been granted the following permissions\n*or* the following IAM roles.\n\n**Permissions**\n\n- `domains.registrations.get` to view details of a single registration resource\n- `domains.registrations.list` to list registration resources\n\n**Roles**\n\n- `roles/domains.viewer`\nor\n- `roles/domains.admin` \n\n### Console\n\nIn the Google Cloud console, go to the\n**Cloud Domains** page.\n\n[Go to Cloud Domains](https://console.cloud.google.com/net-services/domains/registrations/list)\n\nThe **Registrations** page lists your registrations.\n\nYou can view the details of a domain or view a domain in Cloud Domains\nwhen it is in the `Active` or `Suspended` state. To view domain registration\ndetails, click the domain name.\n\n### gcloud\n\n- To list all domain registrations in a project, use the\n [`gcloud domains registrations list` command](/sdk/gcloud/reference/domains/registrations/list):\n\n ```\n gcloud domains registrations list\n ```\n\n By default, registrations are listed in a table format.\n- To view registration details for a specific domain, use the\n [`gcloud domains registrations describe` command](/sdk/gcloud/reference/domains/registrations/describe):\n\n ```\n gcloud domains registrations describe DOMAIN_NAME\n ```\n\n Replace \u003cvar translate=\"no\"\u003eDOMAIN_NAME\u003c/var\u003e with the name of the domain that\n you want to view details for---for example, `example.app`.\n\n### API\n\n- To list all registrations in a project, use the\n [`registrations.list` method](/domains/docs/reference/rest/v1/projects.locations.registrations/list)\n with an empty body:\n\n ```\n GET https://domains.googleapis.com/v1/projects/PROJECT_ID/locations/global/registrations\n ```\n\n You can also use filters to restrict the listed registrations: \n\n ```\n GET https://domains.googleapis.com/v1/projects/PROJECT_ID/locations/global/registrations?filter=FILTER_STRING\n ```\n\n Replace the following:\n - \u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e: the name of your project\n - \u003cvar translate=\"no\"\u003eFILTER_STRING\u003c/var\u003e: the [filter](/domains/docs/reference/rest/v1/projects.locations.registrations/list#query-parameters) string that you want to use\n\n Before URL encoding, an example filter string is\n `domainName:\"example.com\"`.\n\n After URL encoding, the filter string is\n `domainName%3D%22example.com%22` and in context looks like the following: \n\n ```\n GET https://domains.googleapis.com/v1/projects/PROJECT_ID/locations/global/registrations?filter=domainName%3D%22example.com%22\n ```\n\n \u003cbr /\u003e\n\n- To view registration details for a specific domain, use the\n [`registrations.get` method](/domains/docs/reference/rest/v1/projects.locations.registrations/get)\n with an empty body:\n\n ```\n GET https://domains.googleapis.com/v1/projects/PROJECT_ID/locations/global/registrations/DOMAIN_NAME\n ```\n\n Replace the following:\n - \u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e: the name of your project\n - \u003cvar translate=\"no\"\u003eDOMAIN_NAME\u003c/var\u003e: the name of the domain that you want to get details for\n\nWhat's next\n-----------\n\n- To edit registration settings for a domain in Cloud Domains, see [Edit registration settings](/domains/docs/edit-registration-settings).\n- To delete a domain, see [Delete a registered domain](/domains/docs/delete-domain).\n- To access API information, see the [Cloud Domains API](/domains/docs/reference/rest).\n- To find solutions for common issues that you might encounter when using Cloud Domains, see [Troubleshooting](/domains/docs/troubleshooting)."]]