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

# Find Offer Groups (Advanced)

Retrieve a paginated list of offer groups. Supports search filters, sorting, and pagination to help you find and browse offer groups programmatically.


## OpenAPI

````yaml openapi/offer-groups-extras.yaml post /networks/offergroupstable
openapi: 3.0.3
info:
  title: Everflow Network API - Offer Groups (Additional Endpoints)
  description: Additional offer group endpoints for the Everflow network.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Offer Groups
    description: Additional offer group endpoints.
paths:
  /networks/offergroupstable:
    post:
      tags:
        - Offer Groups
      summary: Find Offer Groups (Advanced)
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            default: 1
          description: Page number (1-based).
        - in: query
          name: page_size
          schema:
            type: integer
            default: 50
          description: Number of results per page.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                search_terms:
                  type: array
                  description: Text search filters.
                  items:
                    type: object
                    properties:
                      search_type:
                        type: string
                        enum:
                          - name
                          - advertiser_name
                        description: >
                          The field to search on. `name` searches by offer group
                          name and ID. `advertiser_name` searches by advertiser
                          name.
                      value:
                        type: string
                        description: The search value to match against.
                filters:
                  type: object
                  description: Structured filters to narrow results.
                  properties:
                    network_advertiser_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by one or more network advertiser IDs.
                    network_offer_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by one or more network offer IDs.
                    offer_group_status:
                      type: string
                      enum:
                        - active
                        - paused
                        - deleted
                      description: Filter by offer group status.
                network_offer_group_ids:
                  type: array
                  items:
                    type: integer
                  description: Filter by specific offer group IDs.
                order_field:
                  type: string
                  enum:
                    - name
                    - network_offer_group_id
                    - offer_group_status
                    - network_advertiser_id
                    - time_created
                    - time_saved
                  description: Field to sort results by.
                order_direction:
                  type: string
                  enum:
                    - asc
                    - desc
                  description: Sort direction.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  offer_groups:
                    type: array
                    items:
                      $ref: '#/components/schemas/OfferGroupTableItem'
                  paging:
                    type: object
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
      security:
        - API Key: []
components:
  schemas:
    OfferGroupTableItem:
      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: ID of the advertiser for the offer group.
        name:
          type: string
          description: Name of the offer group.
        offer_group_status:
          type: string
          enum:
            - active
            - paused
            - deleted
          description: Status of the offer group.
        offer_count:
          type: integer
          description: Number of offers in the offer group.
        daily_conversion_cap:
          type: integer
          description: Daily conversion cap.
        weekly_conversion_cap:
          type: integer
          description: Weekly conversion cap.
        monthly_conversion_cap:
          type: integer
          description: Monthly conversion cap.
        global_conversion_cap:
          type: integer
          description: Global conversion cap.
        daily_payout_cap:
          type: number
          description: Daily payout cap.
        weekly_payout_cap:
          type: number
          description: Weekly payout cap.
        monthly_payout_cap:
          type: number
          description: Monthly payout cap.
        global_payout_cap:
          type: number
          description: Global payout cap.
        daily_revenue_cap:
          type: number
          description: Daily revenue cap.
        weekly_revenue_cap:
          type: number
          description: Weekly revenue cap.
        monthly_revenue_cap:
          type: number
          description: Monthly revenue cap.
        global_revenue_cap:
          type: number
          description: Global revenue cap.
        daily_click_cap:
          type: integer
          description: Daily click cap.
        weekly_click_cap:
          type: integer
          description: Weekly click cap.
        monthly_click_cap:
          type: integer
          description: Monthly click cap.
        global_click_cap:
          type: integer
          description: Global click cap.
        today_clicks:
          type: integer
          description: Number of clicks received today.
        today_payout:
          type: number
          description: Total payout for today.
        today_revenue:
          type: number
          description: Total revenue for today.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
        relationship:
          type: object
          properties:
            remaining_caps:
              type: object
              description: >
                Remaining cap values for each cap type. A value of -1000
                indicates the cap is not set (unlimited).
              properties:
                remaining_daily_payout_cap:
                  type: number
                remaining_daily_revenue_cap:
                  type: number
                remaining_daily_conversion_cap:
                  type: integer
                remaining_daily_click_cap:
                  type: integer
                remaining_weekly_payout_cap:
                  type: number
                remaining_weekly_revenue_cap:
                  type: number
                remaining_weekly_conversion_cap:
                  type: integer
                remaining_weekly_click_cap:
                  type: integer
                remaining_monthly_payout_cap:
                  type: number
                remaining_monthly_revenue_cap:
                  type: number
                remaining_monthly_conversion_cap:
                  type: integer
                remaining_monthly_click_cap:
                  type: integer
                remaining_global_payout_cap:
                  type: number
                remaining_global_revenue_cap:
                  type: number
                remaining_global_conversion_cap:
                  type: integer
                remaining_global_click_cap:
                  type: integer
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````