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

> Retrieve a single label by its value, including the IDs and relationship objects for each associated resource.


Retrieve a single label by its ID. Returns the label name and the IDs of resources it is applied to.


## OpenAPI

````yaml openapi/labels.yaml get /networks/labels/{label}
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/{label}:
    get:
      tags:
        - Labels
      summary: Find By Label
      description: >
        Retrieve a single label by its value, including the IDs and relationship
        objects for each associated resource.
      parameters:
        - in: path
          name: label
          required: true
          schema:
            type: string
          description: The label to fetch.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Label'
              example:
                label: '312312'
                advertiser_ids:
                  - 26
                  - 13
                affiliate_ids:
                  - 35
                  - 28
                campaign_ids: null
                offer_ids:
                  - 1
                  - 8
                  - 11
                offer_group_ids:
                  - 2
                affiliate_tier_ids:
                  - 3
                  - 4
                relationship: {}
      security:
        - API Key: []
components:
  schemas:
    Label:
      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.
        relationship:
          type: object
          description: Expanded relationship objects for each associated resource.
          properties:
            advertisers:
              type: array
              items:
                type: object
                properties:
                  network_advertiser_id:
                    type: integer
                    description: Unique advertiser ID.
                  network_id:
                    type: integer
                    description: Network ID.
                  name:
                    type: string
                    description: Advertiser name.
                  account_status:
                    type: string
                    description: Account status of the advertiser.
            affiliates:
              type: array
              items:
                type: object
                properties:
                  network_affiliate_id:
                    type: integer
                    description: Unique affiliate ID.
                  network_id:
                    type: integer
                    description: Network ID.
                  name:
                    type: string
                    description: Affiliate name.
                  account_status:
                    type: string
                    description: Account status of the affiliate.
            campaigns:
              type: array
              items:
                type: object
                properties:
                  network_campaign_id:
                    type: integer
                    description: Unique campaign ID.
                  network_id:
                    type: integer
                    description: Network ID.
                  campaign_name:
                    type: string
                    description: Campaign name.
                  campaign_status:
                    type: string
                    description: Status of the campaign.
            offers:
              type: array
              items:
                type: object
                properties:
                  network_offer_id:
                    type: integer
                    description: Unique offer ID.
                  network_id:
                    type: integer
                    description: Network ID.
                  network_advertiser_id:
                    type: integer
                    description: Advertiser ID that owns this offer.
                  network_offer_group_id:
                    type: integer
                    description: Offer group ID this offer belongs to.
                  name:
                    type: string
                    description: Offer name.
                  offer_status:
                    type: string
                    description: Status of the offer.
                  network_tracking_domain_id:
                    type: integer
                    description: Tracking domain ID used by this offer.
                  visibility:
                    type: string
                    description: Visibility setting of the offer.
                  currency_id:
                    type: string
                    description: Currency identifier for the offer.
            offer_groups:
              type: array
              items:
                type: object
                properties:
                  network_offer_group_id:
                    type: integer
                    description: Unique offer group ID.
                  network_id:
                    type: integer
                    description: Network ID.
                  network_advertiser_id:
                    type: integer
                    description: Advertiser ID that owns this offer group.
                  name:
                    type: string
                    description: Offer group name.
                  offer_group_status:
                    type: string
                    description: Status of the offer group.
                  offer_count:
                    type: integer
                    description: Number of offers in this group.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````