> ## 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 Offer Visibility

Retrieve the visibility settings for a specific offer. Returns the lists of affiliate IDs that have visible, rejected, or hidden access to the offer.


## OpenAPI

````yaml openapi/offer-visibility.yaml get /networks/offers/{offerId}/visibility
openapi: 3.0.3
info:
  title: Everflow Network API - Offer Visibility
  description: >
    Endpoints for managing offer visibility settings in the Everflow network.
    Visibility settings control which partners can see and access an offer — use
    them to protect high-value offers, prevent fraud, and ensure the right
    partners promote the right campaigns. For setup, see the [Offer Visibility
    guide](https://helpdesk.everflow.io/customer/managing-offer-visibility-partner-access).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Offer Visibility
paths:
  /networks/offers/{offerId}/visibility:
    get:
      tags:
        - Offer Visibility
      summary: Get Offer Visibility
      parameters:
        - in: path
          name: offerId
          required: true
          schema:
            type: integer
          description: The offer ID.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  network_id:
                    type: integer
                    description: Network ID.
                  network_offer_id:
                    type: integer
                    description: Offer ID.
                  network_affiliate_visible_ids:
                    type: array
                    items:
                      type: integer
                    description: Affiliate IDs with visible access to the offer.
                  network_affiliate_rejected_ids:
                    type: array
                    items:
                      type: integer
                    description: Affiliate IDs with rejected access to the offer.
                  network_affiliate_hidden_ids:
                    type: array
                    items:
                      type: integer
                    description: Affiliate IDs with hidden access to the offer.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````