---
title: "List Domains"
method: GET
path: "/api/v1/organizations/{organization_id}/domains"
tags: ["Domains"]
---

# List Domains

`GET /api/v1/organizations/{organization_id}/domains`

Retrieves a paginated list of all domains configured for the specified organization.

Domain types:
- ALLOWED_EMAIL_DOMAIN: Trusted domains used to suggest the organization in the organization switcher during sign-in/sign-up (auth-method agnostic).
- ORGANIZATION_DOMAIN: SSO discovery domains used to route users to the correct SSO provider and enforce SSO.

## Path parameters

- `organization_id` string, required

## Query parameters

- `include` string
- `page_size` integer
- `page_number` integer
- `domain_type` 'ALLOWED_EMAIL_DOMAIN' | 'ORGANIZATION_DOMAIN'

## Response `200`

Successfully retrieved the list of domains.

- DomainsListDomainResponse
  - `domains` DomainsDomain[] — Array of domain objects containing all domain details including verification status and configuration.
    - `create_time` string, date-time — Timestamp when the domain was first created.
    - `domain` string — The business domain name that was configured for allowed email domain functionality (e.g., company.com, subdomain.company.com).
    - `domain_type` string
    - `environment_id` string — The environment ID where this domain is configured.
    - `id` string — Scalekit-generated unique identifier for this domain record.
    - `organization_id` string — The organization to which the domain belongs.
    - `update_time` string, date-time — Timestamp when the domain was last updated.
    - `verification_method` 'ADMIN' | 'DNS' | 'NOT_APPLICABLE'
    - `verification_status` 'PENDING' | 'VERIFIED' | 'FAILED' | 'AUTO_VERIFIED'
  - `page_number` integer — Current page number in the pagination sequence.
  - `page_size` integer — Number of domains returned in this page.

---

[API](https://skmtc.net/scalekit/apis/scalekit-api-reference.md) · [All operations](https://skmtc.net/scalekit/apis/scalekit-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/scalekit/scalekit-api-reference/versions/a40d5d4650e5/schema)
