> ## 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 Traffic Health Access

> Returns the Traffic Health capabilities enabled for the authenticated network — whether Traffic Health is enabled at all, whether the premium tier is active, and which premium features (blocklist monitoring, alerts, external domain monitoring, external-proxy domains, assignment management, external notifications) are available. Call this first to decide which Traffic Health endpoints a network can use.


Returns the Traffic Health capabilities enabled for your network — whether Traffic Health is on, whether the premium tier is active, and which premium features are available. Call this first to decide which Traffic Health endpoints your network can use.


## OpenAPI

````yaml openapi/traffic-health.yaml get /networks/traffic/access
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/access:
    get:
      tags:
        - Traffic Health
      summary: Get Traffic Health Access
      description: >
        Returns the Traffic Health capabilities enabled for the authenticated
        network — whether Traffic Health is enabled at all, whether the premium
        tier is active, and which premium features (blocklist monitoring,
        alerts, external domain monitoring, external-proxy domains, assignment
        management, external notifications) are available. Call this first to
        decide which Traffic Health endpoints a network can use.
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                is_enabled: true
                has_premium: true
                has_blacklist_monitoring: true
                has_monitoring_alerts: true
                has_third_party_domain_monitoring: true
                has_external_proxy_domain: true
                has_external_notifications: true
                has_domain_assignment_management: true
                premium_monitored_domain_quota: 25
              schema:
                $ref: '#/components/schemas/TrafficHealthAccess'
      security:
        - API Key: []
components:
  schemas:
    TrafficHealthAccess:
      type: object
      properties:
        is_enabled:
          type: boolean
          description: >-
            Whether Traffic Health is enabled for the network (basic or
            premium).
        has_premium:
          type: boolean
          description: Whether the Traffic Health Premium tier is active.
        has_blacklist_monitoring:
          type: boolean
          description: 'Premium: domain and IP blocklist reputation monitoring.'
        has_monitoring_alerts:
          type: boolean
          description: 'Premium: configurable monitoring alerts.'
        has_third_party_domain_monitoring:
          type: boolean
          description: 'Premium: monitoring of external domains.'
        has_external_proxy_domain:
          type: boolean
          description: 'Premium: external-proxy (self-hosted) domains and certificates.'
        has_external_notifications:
          type: boolean
          description: 'Premium: external notification channels.'
        has_domain_assignment_management:
          type: boolean
          description: 'Premium: domain assignment management.'
        premium_monitored_domain_quota:
          type: integer
          description: Number of domains that can be premium-monitored.
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: X-Eflow-Api-Key

````