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

# Get Domain

> Get a custom domain with current DNS and certificate status.



## OpenAPI

````yaml GET /orgs/{org_id}/domains/{domain_id}
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: alarms
    description: Metric series and threshold alarms
  - name: analytics
    description: Org and project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: channels
    description: Delivery channels alarms notify through
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/domains/{domain_id}:
    get:
      tags:
        - orgs
      description: Get a custom domain with current DNS and certificate status.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
        - name: domain_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Domain details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Domain'
      security:
        - bearer_auth: []
components:
  schemas:
    Domain:
      type: object
      required:
        - id
        - domain
        - validation_records
        - validation_status
        - created_at
        - updated_at
      properties:
        created_at:
          type: integer
          format: int64
          description: Creation timestamp in epoch milliseconds
        domain:
          type: string
          description: Custom domain name
        id:
          type: string
          description: Unique domain identifier
        project_env:
          description: Project environment this domain is linked to, if any
        updated_at:
          type: integer
          format: int64
          description: Last update timestamp in epoch milliseconds
        validation_records:
          type: array
          items:
            $ref: '#/components/schemas/ValidationRecord'
          description: DNS records required for SSL certificate validation
        validation_status:
          $ref: '#/components/schemas/ValidationStatus'
          description: Current SSL certificate validation status
    ValidationRecord:
      type: object
      required:
        - type
        - name
        - value
      properties:
        name:
          type: string
          description: DNS record name
        type:
          type: string
          description: DNS record type (e.g. `CNAME`)
        value:
          type: string
          description: DNS record value
    ValidationStatus:
      type: string
      description: SSL certificate validation status
      enum:
        - pending
        - issued
        - inactive
        - expired
        - revoked
        - failed
        - validationtimedout
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````