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

> Retrieve all labels for the network. Returns each label name along with its associated ID arrays. To get the full relationship objects, use the Find By Label endpoint instead.


Retrieve all labels for the network. Labels can be applied to offers, affiliates, advertisers, campaigns, and offer groups to organize and filter resources.


## OpenAPI

````yaml openapi/labels.yaml get /networks/labels
openapi: 3.0.3
info:
  title: Everflow Network API - Labels
  description: >
    Endpoints for managing labels in the Everflow network. Labels are flexible
    custom tags that let everyone organize and filter data their own way. They
    can be applied to advertisers, affiliates, campaigns, offers, and offer
    groups for internal organization and searching. For an overview, see the
    [Segmentation
    guide](https://helpdesk.everflow.io/customer/offer-labels-categories-segmentation-options).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Labels
paths:
  /networks/labels:
    get:
      tags:
        - Labels
      summary: Find All
      description: >
        Retrieve all labels for the network. Returns each label name along with
        its associated ID arrays. To get the full relationship objects, use the
        Find By Label endpoint instead.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  labels:
                    type: array
                    items:
                      $ref: '#/components/schemas/LabelSummary'
              example:
                labels:
                  - label: '312312'
                    advertiser_ids: null
                    affiliate_ids: null
                    campaign_ids: null
                    offer_ids: null
                    offer_group_ids: null
                    affiliate_tier_ids: null
      security:
        - API Key: []
components:
  schemas:
    LabelSummary:
      type: object
      properties:
        label:
          type: string
          description: The label value.
        advertiser_ids:
          type: array
          nullable: true
          items:
            type: integer
          description: List of advertiser IDs associated with this label.
        affiliate_ids:
          type: array
          nullable: true
          items:
            type: integer
          description: List of affiliate IDs associated with this label.
        campaign_ids:
          type: array
          nullable: true
          items:
            type: integer
          description: List of campaign IDs associated with this label.
        offer_ids:
          type: array
          nullable: true
          items:
            type: integer
          description: List of offer IDs associated with this label.
        offer_group_ids:
          type: array
          nullable: true
          items:
            type: integer
          description: List of offer group IDs associated with this label.
        affiliate_tier_ids:
          type: array
          nullable: true
          items:
            type: integer
          description: List of affiliate tier IDs associated with this label.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````