> ## 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.

# List Blocked Sources

Returns all blocked offer/sub-parameter combinations for the authenticated affiliate. These blocks prevent traffic from specific sources from being counted. Supports filtering by offer ID and blocking status.


## OpenAPI

````yaml openapi/affiliate-traffic.yaml get /affiliates/trafficblocking
openapi: 3.0.3
info:
  title: Everflow Affiliate API - Traffic
  description: >
    Traffic blocking and traffic control endpoints for the Everflow Affiliate
    API. Affiliates can view blocked offer sources, traffic control rules, and
    blocked variables that affect their traffic.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Affiliate Traffic
    description: Endpoints for viewing traffic blocking rules and controls.
paths:
  /affiliates/trafficblocking:
    get:
      tags:
        - Affiliate Traffic
      summary: Find All Blocked Offer Sources
      parameters:
        - name: network_offer_id
          in: query
          description: Filter by specific offer ID.
          schema:
            type: integer
        - name: traffic_blocking_status
          in: query
          description: Filter by blocking status.
          schema:
            type: string
            enum:
              - active
              - inactive
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  traffic_blocking:
                    type: array
                    description: Array of blocked offer source entries.
                    items:
                      type: object
                      properties:
                        network_offer_id:
                          type: integer
                          description: The offer ID associated with this block.
                        relationship:
                          type: object
                          description: Related data for this block.
                          properties:
                            variables:
                              type: object
                              description: Variables that define the blocking rule.
                              properties:
                                total:
                                  type: integer
                                  description: Total number of variable entries.
                                entries:
                                  type: array
                                  description: Array of variable entries.
                                  items:
                                    type: object
                                    properties:
                                      comparison_method:
                                        type: string
                                        description: >-
                                          How the variable is compared (contains,
                                          exact_match, begins_with, etc.).
                                      variable:
                                        type: string
                                        description: >-
                                          The variable being blocked (e.g. sub1,
                                          sub2, source_id).
                                      variable_value:
                                        type: string
                                        description: >-
                                          The value of the variable that triggers
                                          the block.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: >
        The affiliate's API key generated from the Affiliate Portal. Uses the
        X-Eflow-Api-Key header.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````