> ## Documentation Index
> Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Domain Status

Returns the current setup status of a custom domain, including SSL certificate status and activation state.

<ParamField path="team" type="string" required>
  The UUID of the team.
</ParamField>

<ParamField path="domain" type="integer" required>
  The ID of the custom domain.
</ParamField>

## Response

<ResponseField name="id" type="integer">
  The numeric ID of the custom domain.
</ResponseField>

<ResponseField name="hostname" type="string">
  The registered hostname.
</ResponseField>

<ResponseField name="status" type="string">
  The current domain status (e.g., `pending`, `active`, `failed`).
</ResponseField>

<ResponseField name="ssl_status" type="string">
  The SSL certificate status (e.g., `pending`, `active`, `failed`).
</ResponseField>

<ResponseField name="can_retry" type="boolean">
  Whether the provisioning can be retried (applicable when the setup has failed).
</ResponseField>

<ResponseField name="activated_at" type="string">
  ISO 8601 timestamp of when the domain was activated. `null` if not yet active.
</ResponseField>
