GET /accounts/{account_id}/registrar/registrations

Returns a paginated list of domain registrations owned by the account.

This endpoint uses cursor-based pagination. Results are ordered by registration date by default. To fetch the next page, pass the cursor value from the result_info object in the response as the cursor query parameter in your next request. An empty cursor string indicates there are no more pages.

Servers

Path parameters

Name Type Required Description
account_id String Yes

Cloudflare account ID.

Query parameters

Name Type Required Description
direction String No

Sort direction for results. Defaults to ascending order.

Valid values:

  • "desc"
  • "asc"

Default value: "asc"

per_page Integer No

Number of items to return per page.

Default value: 20

cursor String No

Opaque token from a previous response's result_info.cursor. Pass this value to fetch the next page of results. Omit (or pass an empty string) for the first page.

sort_by String No

Column to sort results by. Defaults to registration date (registry_created_at) when omitted.

Valid values:

  • "registry_created_at"
  • "name"
  • "registry_expires_at"

Default value: "registry_created_at"

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.