v1

latestOpenAPI 3.1.0MIT2026-07-243952451019.0 KB
Domain

List Domains

List all domains for a workspace. Use this endpoint to retrieve domain IDs for use with other resources such as Funnels.

get/workspaces/{workspace_id}/domains

Path parameters

workspace_idinteger required

Response

OK

idinteger

Domain ID

public_idstring

The public identifier of the domain

workspace_idinteger

The ID of the workspace that the domain belongs to

namestring

The domain name (e.g. example.com)

status'initialized' | 'connecting' | 'ownership_verified' | 'securing' | 'secured' | 'removing'

The current connection status of the domain

connectedboolean

Whether the domain is fully connected and active

created_atstring date-time

Created at

updated_atstring date-time

Updated at

Example response

[
  {
    "id": 1,
    "public_id": "aBcDeF",
    "workspace_id": 42000,
    "name": "example.com",
    "status": "secured",
    "connected": true,
    "created_at": "2025-01-01T00:00:00.000Z",
    "updated_at": "2025-01-01T00:00:00.000Z"
  }
]