> ## 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 Custom Landing Pages (Advanced)

Retrieve a paginated list of custom landing page settings. Supports search filters, sorting, and pagination to help you find and browse landing page configurations programmatically.


## OpenAPI

````yaml openapi/custom-landing-pages.yaml post /networks/custom/landingpages/table
openapi: 3.0.3
info:
  title: Everflow Network API - Custom Landing Pages
  description: >
    Endpoints for managing custom landing page settings in the Everflow network.
    Custom landing pages let you create unique default landing page URLs for
    specific partners or tracking conditions, overriding the offer's base
    destination. For landing page concepts, see the [Pre-Landers
    guide](https://helpdesk.everflow.io/customer/how-to-leverage-pre-landers-offer-walls-listicles).
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Custom Landing Pages
    description: Endpoints for managing custom landing page settings.
paths:
  /networks/custom/landingpages/table:
    post:
      tags:
        - Custom Landing Pages
      summary: Find Custom Landing Pages (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.
        - in: query
          name: relationship
          schema:
            type: string
            enum:
              - variables
              - all
          description: >
            Include additional related data. The `offer` and `affiliates`
            relationships are always returned. Use `variables` to add variable
            conditions, or `all` to include variables and creatives.
        - in: query
          name: order_field
          schema:
            type: string
            enum:
              - network_custom_landing_page_setting_id
              - network_custom_landing_page_setting_name
              - offer_name
              - network_custom_landing_page_setting_status
              - network_custom_landing_page_setting_destination_url
              - network_custom_landing_page_setting_time_created
              - network_custom_landing_page_setting_time_saved
          description: Field to order results by.
        - in: query
          name: order_direction
          schema:
            type: string
            enum:
              - asc
              - desc
          description: Sort direction.
      requestBody:
        required: true
        content:
          application/json:
            example:
              search_terms: []
              filters: {}
            schema:
              type: object
              properties:
                search_terms:
                  type: array
                  description: Text search filters.
                  items:
                    type: object
                    properties:
                      search_type:
                        type: string
                        enum:
                          - name
                          - url
                        description: >
                          The field to search on. `name` searches by setting
                          name, `url` searches by destination URL.
                      value:
                        type: string
                        description: The search value.
                filters:
                  type: object
                  description: Structured filters to narrow results.
                  properties:
                    page_setting_status:
                      type: string
                      enum:
                        - active
                        - inactive
                      description: Filter by setting status.
                    network_offer_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by offer IDs.
                    network_affiliate_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by affiliate IDs.
                    network_advertiser_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by advertiser IDs.
                    is_apply_all_affiliates:
                      type: string
                      enum:
                        - enabled
                        - disabled
                      description: Filter by whether the setting applies to all affiliates.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  entries:
                    type: array
                    items:
                      type: object
                      properties:
                        network_custom_landing_page_setting_id:
                          type: integer
                        network_id:
                          type: integer
                        is_apply_all_affiliates:
                          type: boolean
                        network_affiliate_ids:
                          type: array
                          nullable: true
                          items:
                            type: integer
                        network_offer_id:
                          type: integer
                        name:
                          type: string
                        network_offer_landing_page_id:
                          type: integer
                        description:
                          type: string
                        destination_url:
                          type: string
                        custom_setting_status:
                          type: string
                        date_valid_from:
                          type: string
                        date_valid_to:
                          type: string
                        time_created:
                          type: integer
                          example: 1734455015
                        time_saved:
                          type: integer
                          example: 1734455015
                        network_creative_ids:
                          type: array
                          nullable: true
                          items:
                            type: integer
                        relationship:
                          type: object
                          properties:
                            affiliates:
                              type: array
                              description: >-
                                Associated affiliate details. Always included
                                when the entry has specific affiliates assigned.
                              items:
                                type: object
                                properties:
                                  network_affiliate_id:
                                    type: integer
                                  network_id:
                                    type: integer
                                  name:
                                    type: string
                                  account_status:
                                    type: string
                            offer:
                              type: object
                              description: Associated offer details. Always included.
                              properties:
                                network_offer_id:
                                  type: integer
                                  description: Unique offer ID.
                                network_id:
                                  type: integer
                                  description: Network ID.
                                name:
                                  type: string
                                  description: Offer name.
                                offer_status:
                                  type: string
                                  description: Status of the offer.
                            variables:
                              type: object
                              description: >-
                                Goal condition variables for this setting
                                (included with `relationship=variables` or
                                `relationship=all`).
                              properties:
                                total:
                                  type: integer
                                  description: Total number of variables.
                                entries:
                                  type: array
                                  description: List of variable conditions.
                                  items:
                                    type: object
                                    properties:
                                      network___custom___landing___page___setting___variable___id:
                                        type: integer
                                        description: Unique variable ID.
                                      network___custom___landing___page___setting___id:
                                        type: integer
                                        description: >-
                                          The parent custom landing page setting
                                          ID.
                                      comparison_method:
                                        type: string
                                        description: >-
                                          How to compare the variable against the
                                          value.
                                      variable:
                                        type: string
                                        description: The variable name (e.g. `sub1`, `sub2`).
                                      variable_value:
                                        type: string
                                        description: The value to compare against.
                                      variable_secondary_value:
                                        type: string
                                        description: >-
                                          A secondary value used with range-based
                                          comparisons.
                            creatives:
                              type: array
                              description: >-
                                Associated creative details (included with
                                `relationship=all`).
                              items:
                                type: object
                                properties:
                                  id:
                                    type: integer
                                    description: Creative ID.
                                  label:
                                    type: string
                                    description: Creative label.
                                  status:
                                    type: string
                                    description: Creative status.
                  paging:
                    type: object
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
      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

````