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

Retrieve all offer categories for the network. Categories are used to organize offers into logical groupings for filtering and reporting.


## OpenAPI

````yaml openapi/categories.yaml get /networks/categories
openapi: 3.0.3
info:
  title: Everflow Network API - Categories
  description: >
    Endpoints for managing offer categories in the Everflow network. Categories
    are public classifications that help partners find relevant offers — common
    examples include Gaming, Lead Generation, Retail, and Finance. For an
    overview, see the [Categories
    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: Categories
paths:
  /networks/categories:
    get:
      tags:
        - Categories
      summary: List Categories
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  categories:
                    type: array
                    description: List of categories.
                    items:
                      $ref: '#/components/schemas/Category'
              example:
                categories:
                  - network_category_id: 6
                    network_id: 1
                    name: '321312'
                    status: inactive
                    time_created: 1774712593
                    time_saved: 1774712593
      security:
        - API Key: []
components:
  schemas:
    Category:
      type: object
      description: An offer category in the network.
      properties:
        network_category_id:
          type: integer
          description: Unique category ID.
        network_id:
          type: integer
          description: Network ID this category belongs to.
        name:
          type: string
          description: Category name.
        status:
          type: string
          enum:
            - active
            - inactive
          description: Category status.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````