> ## 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 Domain Usage

> Traffic-attributed reporting per tracking domain — how many offers, partners, and offer/partner combinations route through each domain, with that domain's performance metrics. The `reporting` object uses the standard Network Reporting metric set; see the [Reporting](/api-reference/post-networksreportingentitytable) endpoints for the full metric definitions. Send an optional reporting window in the body.


Traffic-attributed reporting per tracking domain — how many offers, partners, and combinations route through each domain, with that domain's performance metrics. The `reporting` object uses the standard Network Reporting metric set; see the Reporting endpoints for the full metric definitions.


## OpenAPI

````yaml openapi/traffic-health.yaml post /networks/traffic/usage/domains
openapi: 3.0.3
info:
  title: Everflow Network API - Traffic Health
  description: >
    Read endpoints for Traffic Health — the operational health of the domains
    and hosting IPs behind your tracking and conversion links. Surfaces uptime /
    SSL / DNS / expiry incidents, blocklist reputation, the remediation tasks
    that need your attention, and per-domain assignment summaries.


    Traffic Health has two tiers. The capabilities available to a network are
    reported by `GET /networks/traffic/access`. Endpoints marked **Traffic
    Health Premium** (domain and IP blocklist reputation) require the premium
    package; on a network without it they return an authorization error rather
    than data.


    For how these incidents and reputation flags work, see [Traffic Health:
    Incidents & Reputation
    Management](https://helpdesk.everflow.io/customer/traffic-health-incidents-and-reputation-management).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Traffic Health
paths:
  /networks/traffic/usage/domains:
    post:
      tags:
        - Traffic Health
      summary: Get Domain Usage
      description: >
        Traffic-attributed reporting per tracking domain — how many offers,
        partners, and offer/partner combinations route through each domain, with
        that domain's performance metrics. The `reporting` object uses the
        standard Network Reporting metric set; see the
        [Reporting](/api-reference/post-networksreportingentitytable) endpoints
        for the full metric definitions. Send an optional reporting window in
        the body.
      requestBody:
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UsageFilter'
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                network_domain_reporting:
                  - tracking_domain_id: 1
                    url: track.acme.com
                    offer_count: 3
                    affiliate_count: 8
                    reporting:
                      total_click: 1240
                      unique_click: 1180
                      cv: 64
                      revenue: 5120.5
                      payout: 3280
                      profit: 1840.5
              schema:
                type: object
                properties:
                  network_domain_reporting:
                    type: array
                    items:
                      $ref: '#/components/schemas/DomainUsage'
      security:
        - API Key: []
components:
  schemas:
    UsageFilter:
      type: object
      description: >
        Optional reporting window. Send an empty object `{}` for the default
        window.
      properties:
        from:
          type: string
          description: Window start, `YYYY-MM-DD`.
        to:
          type: string
          description: Window end, `YYYY-MM-DD`.
        timezone_id:
          type: integer
          description: Reporting timezone ID.
    DomainUsage:
      type: object
      properties:
        tracking_domain_id:
          type: integer
        url:
          type: string
        offer_count:
          type: integer
        affiliate_count:
          type: integer
        reporting:
          type: object
          description: >
            Standard Network Reporting metric set (clicks, conversions, revenue,
            payout, profit, and rate metrics). See the Reporting endpoints for
            the full metric definitions.
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: X-Eflow-Api-Key

````