---
title: "List custom domains"
method: GET
path: "/api/v1/projects/{project_id}/domains/custom"
tags: ["Projects", "Domains"]
---

# List custom domains

`GET /api/v1/projects/{project_id}/domains/custom`

List all custom domains for a project.

## Path parameters

- `project_id` string, uuid, required — The unique identifier of the project

## Response `200`

Successful Response

- CustomDomainListResponse — Response containing a list of custom domains for a project. Attributes: domains: List of custom domain cards. total_count: Total number of custom domains. max_allowed: Maximum number of custom domains allowed per project.
  - `domains` CustomDomainCard[], required
    - `custom_domain_id` string, uuid, required
    - `project_id` string, uuid, required — The unique identifier of the project
    - `organization_id` string, required — The ID of an organization in Rebolt.
    - `cloudflare_custom_hostname_id` string, nullable, required
    - `hostname` string, required
    - `status` 'provisioning' | 'pending' | 'pending_validation' | 'pending_issuance' | 'pending_deployment' | 'active' | 'pending_deletion' | 'moved' | 'deleted' | 'blocked', required — Status of a custom domain. PROVISIONING is an internal status indicating the domain slot is reserved but Cloudflare registration is in progress. All other statuses map to Cloudflare's custom hostname status values.
    - `is_active` boolean, required
    - `ownership_verification` DomainOwnershipVerification, required — TXT record verification details for domain ownership. This contains the information needed for the customer to prove they own the domain by adding a TXT record.
      - `txt_name` string, required
      - `txt_value` string, required
    - `ssl_verification` DomainSSLVerification, required — SSL certificate verification details. Contains information for DCV (Domain Control Validation) to issue an SSL certificate for the custom domain.
      - `http_url` string, nullable
      - `http_body` string, nullable
      - `txt_name` string, nullable
      - `txt_value` string, nullable
    - `verification_errors` string[], nullable, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `total_count` integer, required
  - `max_allowed` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/rebolt/apis/fastapi.md) · [All operations](https://skmtc.dev/rebolt/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rebolt/fastapi/revisions/ee5884f323f3/schema)
