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

# Listar dominios personalizados

> GET /custom-domain/

Enumera los propios dominios personalizados conectados de la cuenta, en el host de la **API de gestión** (`api.scanova.io`), autenticado con su clave de API de gestión sin procesar.

```
GET https://api.scanova.io/custom-domain/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
```

<Note>
  Requiere la cuota de plan `CUSTOM_DOMAIN` y el permiso `CUSTOM_DOMAIN_CAN_VIEW`.
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.scanova.io/custom-domain/" \
    -H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
      {
        "id": 42,
        "domain": "https://links.example.com",
        "is_default": false,
        "disable_slug_case": false,
        "txt_value": "scanova-verification=abc123...",
        "is_txt_verified": false,
        "is_cname_verified": false,
        "is_migrated": false,
        "dns_provider": { "name": "Cloudflare", "placeholders": { "cname": { "content": { "label": "Target" } } } },
        "txt_error": null,
        "cname_error": null,
        "root_action": "no_action",
        "redirect": null,
        "template": null,
        "protocol": "https",
        "remove_qr_query": false,
        "cname_target": "shortcname.scanova.io",
        "domain_connect_supported": false,
        "domain_connect_checked_at": null,
        "created": "2026-09-08T10:00:00Z",
        "modified": "2026-09-08T10:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>

`txt_value` y `cname_target` son los registros DNS que este dominio aún necesita (o ya tiene) apuntando a Scanova — consulte [Agregar un dominio personalizado](/es/api-reference/management-api/custom-domain/create) para ver de dónde provienen. `is_txt_verified`/`is_cname_verified` reflejan la última ejecución de verificación, no una comprobación en vivo.

## Relacionado

* [Agregar un dominio personalizado](/es/api-reference/management-api/custom-domain/create) — conectar uno nuevo.
* [Verificar los registros DNS de un dominio personalizado](/es/api-reference/management-api/custom-domain/verify) — volver a comprobar el DNS y actualizar estos indicadores.
* [Listar dominios verificados para asignación de QR](/es/api-reference/management-api/custom-domain/verified-list) — el equivalente apto para selectores, para asignar un dominio a un código QR.
* [Resumen de la API de gestión](/es/api-reference/management-api/overview) — el esquema de autenticación y las reglas de cuota aplicables a este endpoint.


## OpenAPI

````yaml api-reference/openapi/management-api.json GET /custom-domain/
openapi: 3.1.0
info:
  title: Scanova Management API (v2)
  description: >-
    The complete Scanova Management API — every endpoint available at
    api.scanova.io (QR codes, folders, tags, leads, forms, analytics, plans,
    shared users & roles), plus the token-creation and usage-stats endpoints
    used to authenticate against it. Every path and request/response shape below
    was verified live against a real API key and the actual running backend
    (Phase 7, 2026-08-16) — not guessed from reading urls.py alone.
  version: 2.0.0
servers:
  - url: https://api.scanova.io
    description: Management API — QR/folder/tag/lead/form/analytics/plans endpoints
security:
  - apiKeyAuth: []
paths:
  /custom-domain/:
    get:
      summary: List custom domains
      description: The account's own connected custom domains.
      operationId: listCustomDomains
      responses:
        '200':
          description: Paginated list of custom domains.
          content:
            application/json:
              example:
                count: 1
                next: null
                previous: null
                results:
                  - id: 42
                    domain: https://links.example.com
                    is_default: false
                    disable_slug_case: false
                    txt_value: scanova-verification=abc123...
                    is_txt_verified: false
                    is_cname_verified: false
                    is_migrated: false
                    dns_provider:
                      name: Cloudflare
                      placeholders:
                        cname:
                          content:
                            label: Target
                    txt_error: null
                    cname_error: null
                    root_action: no_action
                    redirect: null
                    template: null
                    protocol: https
                    remove_qr_query: false
                    cname_target: shortcname.scanova.io
                    domain_connect_supported: false
                    domain_connect_checked_at: null
                    created: '2026-09-08T10:00:00Z'
                    modified: '2026-09-08T10:00:00Z'
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Send your Management API key as the raw value of the Authorization
        header — no "Bearer " or "Token " prefix, and no other characters.
        Example: `Authorization: 401f7ac837da42b97f613d789819ff93537bee6a`. A
        header containing more than one space-separated part is rejected
        outright. Requests also require the request's Host header to be the
        management API host (e.g. api.scanova.io) — the same key sent to the
        regular API host will not authenticate.

````