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

# Get Tracking Domain

> Retrieve a single tracking domain by its ID.




## OpenAPI

````yaml openapi/tracking-domains.yaml get /networks/domains/tracking/{domainId}
openapi: 3.0.3
info:
  title: Everflow Network API - Tracking Domains
  description: >
    Endpoints for managing tracking domains and affiliate tracking domain
    assignments. Tracking domains are the custom domains used to construct
    tracking links and impression URLs for offers. Affiliate tracking domain
    assignments control which tracking domain a specific partner uses when
    generating links. For more detail, see [Tracking & Conversion Domain
    Management](https://helpdesk.everflow.io/customer/tracking-conversion-domain-management)
    in the Help Center.
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Tracking Domains
paths:
  /networks/domains/tracking/{domainId}:
    get:
      tags:
        - Tracking Domains
      summary: Get Tracking Domain
      description: |
        Retrieve a single tracking domain by its ID.
      parameters:
        - in: path
          name: domainId
          required: true
          schema:
            type: integer
          description: The unique tracking domain ID.
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                network_tracking_domain_id: 1
                network_id: 1
                url: www.testtracking.com
                is_primary_domain: true
                domain_status: active
                is_unassignable: false
                ownership: internal
                is_ssl_enabled: false
                html_static_redirect: ''
                url_redirect: ''
                public_notes: ''
                time_created: 1774296114
                time_saved: 1774296114
              schema:
                $ref: '#/components/schemas/TrackingDomain'
        '404':
          description: Tracking domain not found.
      security:
        - API Key: []
components:
  schemas:
    TrackingDomain:
      type: object
      properties:
        network_tracking_domain_id:
          type: integer
          description: Unique tracking domain ID.
        network_id:
          type: integer
          description: Network ID this domain belongs to.
        url:
          type: string
          description: The tracking domain URL.
        is_primary_domain:
          type: boolean
          description: Whether this is the primary tracking domain.
        domain_status:
          type: string
          enum:
            - active
          description: Domain status.
        is_ssl_enabled:
          type: boolean
          description: Whether SSL is enabled for this domain.
        is_unassignable:
          type: boolean
          description: Whether the domain cannot be assigned to offers.
        public_notes:
          type: string
          description: Public-facing notes for this domain.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
        ownership:
          type: string
          description: Domain ownership information.
        html_static_redirect:
          type: string
          description: HTML static redirect content.
        url_redirect:
          type: string
          description: URL redirect value.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````