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

# Search Refunds

Search and filter refund records. Returns refunds within the specified date range, with optional filters to narrow the results by offer, affiliate, or other criteria.


## OpenAPI

````yaml openapi/reporting-adjustments.yaml post /networks/reporting/refunds
openapi: 3.0.3
info:
  title: Everflow Network API - Adjustment and Refund Reporting
  description: >
    Reporting adjustment and refund endpoints for the Everflow partner marketing
    platform. For more detail, see [Performance Data
    Adjustments](https://helpdesk.everflow.io/customer/performance-data-adjustments-clicks-conversions-revenue-payout)
    in the Help Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: Adjustment and refund reporting endpoints.
paths:
  /networks/reporting/refunds:
    post:
      tags:
        - Reporting
      summary: Search Refunds
      requestBody:
        required: true
        content:
          application/json:
            example:
              from: '2026-03-01'
              to: '2026-03-08'
              timezone_id: 90
              currency_id: USD
            schema:
              type: object
              required:
                - from
                - to
                - timezone_id
                - currency_id
              properties:
                from:
                  type: string
                  description: 'Start date (format: YYYY-MM-DD).'
                to:
                  type: string
                  description: 'End date (format: YYYY-MM-DD).'
                timezone_id:
                  type: integer
                  description: Timezone ID for the report.
                currency_id:
                  type: string
                  description: Currency code for reporting metrics.
                query:
                  type: object
                  description: Optional filters to narrow results.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  refunds:
                    type: array
                    items:
                      type: object
                      description: Refund record.
      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

````