> ## 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 Blacklist Incident

> **Traffic Health Premium.** A single domain blocklist incident by its identifier — the flagging provider and vendor, status, and the vendor's listing details (impact level, criteria, delisting guidance). Requires `has_blacklist_monitoring`.


<Note>Requires **Traffic Health Premium** (`has_blacklist_monitoring`).</Note>

A single domain blocklist incident by its identifier — the flagging provider and vendor, status, and the vendor's listing details (impact level, criteria, delisting guidance).


## OpenAPI

````yaml openapi/traffic-health.yaml get /networks/traffic/blacklistincidents/domains/{blacklistIncidentIdentifier}
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/blacklistincidents/domains/{blacklistIncidentIdentifier}:
    get:
      tags:
        - Traffic Health
      summary: Get Domain Blacklist Incident
      description: >
        **Traffic Health Premium.** A single domain blocklist incident by its
        identifier — the flagging provider and vendor, status, and the vendor's
        listing details (impact level, criteria, delisting guidance). Requires
        `has_blacklist_monitoring`.
      parameters:
        - in: path
          name: blacklistIncidentIdentifier
          required: true
          schema:
            type: string
          description: The blacklist incident identifier.
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                network_id: 1
                url: track.acme.com
                domain_type: tracking
                identifier: N5T2KL7CUPYYNBY0
                status: active
                provider: easylist
                vendor: EASYLIST
                time_created: 1778549980
                time_saved: 1782437980
                time_last_observed: 1782437980
                time_resolved: 0
                relationship:
                  vendor:
                    provider: EasyList
                    category: Advertiser Block List
                    name: EasyList
                    identifier: EASYLIST
                    website_url: https://easylist.to/
                    impact_level: high
              schema:
                $ref: '#/components/schemas/DomainBlacklistIncident'
      security:
        - API Key: []
components:
  schemas:
    DomainBlacklistIncident:
      type: object
      properties:
        network_id:
          type: integer
        url:
          type: string
        domain_type:
          type: string
        identifier:
          type: string
        status:
          type: string
        provider:
          type: string
          description: Blocklist source (e.g. `easylist`, `google_threat_intelligence`).
        vendor:
          type: string
        time_created:
          type: integer
        time_saved:
          type: integer
        time_last_observed:
          type: integer
        time_resolved:
          type: integer
        relationship:
          type: object
          properties:
            vendor:
              $ref: '#/components/schemas/BlacklistVendor'
    BlacklistVendor:
      type: object
      description: Listing details for the flagging vendor.
      properties:
        provider:
          type: string
        category:
          type: string
        name:
          type: string
        identifier:
          type: string
        website_url:
          type: string
        impact_level:
          type: string
          description: '`low`, `medium`, or `high`.'
        impact_details:
          type: string
        listing_criteria:
          type: string
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: X-Eflow-Api-Key

````