> ## 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 Conversion Report

Extract conversions with flexible filtering. Limited to the prior 365 days
and a maximum date range of 1 year. Requires from/to dates, timezone\_id,
and show\_conversions/show\_events booleans.

Pagination is controlled through the `page` and `page_size` **query parameters**,
not the JSON request body. For example, `?page=2&page_size=100` returns the
second page of 100 conversions.

### Examples

**Approved base conversions over the last hour:**

```json theme={null}
{
  "from": "2026-03-09 14:00:00",
  "to": "2026-03-09 15:00:00",
  "timezone_id": 90,
  "currency_id": "USD",
  "show_conversions": true,
  "show_events": false,
  "query": {
    "filters": [
      {"filter_id_value": "approved", "resource_type": "status"}
    ]
  }
}
```

**Pending view-through conversions on a specific offer:**

```json theme={null}
{
  "from": "2026-03-01",
  "to": "2026-03-07",
  "timezone_id": 90,
  "currency_id": "USD",
  "show_conversions": true,
  "show_events": false,
  "query": {
    "filters": [
      {"filter_id_value": "pending", "resource_type": "status"},
      {"filter_id_value": "42", "resource_type": "offer"}
    ]
  }
}
```

**Conversions by multiple transaction IDs:**

```json theme={null}
{
  "from": "2026-03-01",
  "to": "2026-03-07",
  "timezone_id": 90,
  "currency_id": "USD",
  "show_conversions": true,
  "show_events": true,
  "query": {
    "filters": [
      {"filter_id_value": "9c0534c99eb34b57bda16f92b6d5d3d4", "resource_type": "transaction_id"},
      {"filter_id_value": "307971a211b74db98c3c11d5e83c082a", "resource_type": "transaction_id"}
    ]
  }
}
```


## OpenAPI

````yaml openapi/reporting-conversions.yaml post /networks/reporting/conversions
openapi: 3.0.3
info:
  title: Everflow Network API - Conversion Reporting
  description: >
    Conversion reporting and management endpoints for the Everflow partner
    marketing platform. Search, retrieve, update, and create conversions. For
    more detail, see [Conversion
    Report](https://helpdesk.everflow.io/customer/conversion-report) in the Help
    Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: Conversion reporting and management endpoints.
paths:
  /networks/reporting/conversions:
    post:
      tags:
        - Reporting
      summary: Get Conversion Report
      parameters:
        - in: query
          name: page
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
          description: The page of results to retrieve.
        - in: query
          name: page_size
          required: false
          schema:
            type: integer
            minimum: 1
            default: 50
          description: The number of results to return per page.
      requestBody:
        content:
          application/json:
            example:
              show_conversions: true
              show_events: false
              from: '2026-03-01'
              to: '2026-03-31'
              timezone_id: 67
              currency_id: USD
              query:
                filters: []
                search_terms: []
            schema:
              required:
                - from
                - to
                - timezone_id
                - show_conversions
                - show_events
              properties:
                currency_id:
                  type: string
                from:
                  type: string
                query:
                  properties:
                    filters:
                      properties:
                        filter_id_value:
                          type: string
                        resource_type:
                          enum:
                            - offer
                            - offer_group
                            - affiliate
                            - advertiser
                            - offer_creative
                            - transaction_id
                            - campaign
                            - billing_frequency
                            - business_unit
                            - label
                            - category
                            - sub1
                            - sub2
                            - sub3
                            - sub4
                            - sub5
                            - sub6
                            - sub7
                            - sub8
                            - sub9
                            - sub10
                            - source_id
                            - country
                            - account_manager
                            - affiliate_manager
                            - status
                            - offer_url
                            - currency_id
                            - affiliate_tier
                            - adv1
                            - adv2
                            - adv3
                            - adv4
                            - adv5
                            - adv6
                            - adv7
                            - adv8
                            - adv9
                            - adv10
                            - browser
                            - carrier
                            - city
                            - coupon_code
                            - dma
                            - date
                            - hourly
                            - device_brand
                            - device_type
                            - hour
                            - isp
                            - language
                            - month
                            - os_version
                            - payout_amount
                            - payout_type
                            - platform
                            - project_id
                            - referrer
                            - region
                            - revenue_amount
                            - revenue_type
                            - week
                            - conversion_id
                            - order_id
                            - tracking_domain
                            - offer_payout_revenue_id
                            - country_code
                            - advertiser_billing_frequency
                            - error_code
                          type: string
                      type: object
                    search_terms:
                      properties:
                        search_type:
                          enum:
                            - transaction_id
                            - sub_1
                            - sub_2
                            - sub_3
                            - sub_4
                            - sub_5
                            - adv_1
                            - adv_2
                            - adv_3
                            - adv_4
                            - adv_5
                            - source_id
                            - user_ip
                            - user_agent
                            - order_id
                            - country
                            - region
                            - city
                            - status
                            - is_scrub
                            - email
                            - coupon_code
                            - event_name
                          type: string
                        value:
                          type: string
                      type: object
                  type: object
                show_conversions:
                  type: boolean
                show_events:
                  type: boolean
                show_only_ct:
                  type: boolean
                show_only_fail_traffic:
                  type: boolean
                show_only_scrub:
                  type: boolean
                show_only_vt:
                  type: boolean
                timezone_id:
                  type: integer
                to:
                  type: string
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  conversions:
                    type: array
                    items:
                      type: object
                      properties:
                        adv1:
                          type: string
                        adv2:
                          type: string
                        adv3:
                          type: string
                        adv4:
                          type: string
                        adv5:
                          type: string
                        adv6:
                          type: string
                        adv7:
                          type: string
                        adv8:
                          type: string
                        adv9:
                          type: string
                        adv10:
                          type: string
                        android_id:
                          type: string
                        android_id_md5:
                          type: string
                        android_id_sha1:
                          type: string
                        app_id:
                          type: string
                        brand:
                          type: string
                        browser:
                          type: string
                        carrier:
                          type: string
                        city:
                          type: string
                        click_unix_timestamp:
                          type: integer
                        conversion_id:
                          type: string
                        conversion_unix_timestamp:
                          type: integer
                        conversion_user_ip:
                          type: string
                        country:
                          type: string
                        coupon_code:
                          type: string
                        currency_id:
                          type: string
                        device_model:
                          type: string
                        device_type:
                          type: string
                        dma:
                          type: integer
                        email:
                          type: string
                        error_code:
                          type: integer
                        error_message:
                          type: string
                        event:
                          type: string
                        google_ad_id:
                          type: string
                        google_ad_id_md5:
                          type: string
                        google_ad_id_sha1:
                          type: string
                        http_user_agent:
                          type: string
                        idfa:
                          type: string
                        idfa_md5:
                          type: string
                        idfa_sha1:
                          type: string
                        is_event:
                          type: boolean
                        is_scrub:
                          type: boolean
                        is_view_through:
                          type: boolean
                        isp:
                          type: string
                        language:
                          type: string
                        network_offer_payout_revenue_id:
                          type: integer
                        notes:
                          type: string
                        order_id:
                          type: string
                        os_version:
                          type: string
                        payout:
                          type: number
                        payout_type:
                          type: string
                        platform:
                          type: string
                        previous_network_offer_id:
                          type: integer
                        referer:
                          type: string
                        region:
                          type: string
                        relationship:
                          properties:
                            account_manager:
                              properties:
                                account_status:
                                  enum:
                                    - active
                                    - inactive
                                    - suspended
                                    - pending
                                  type: string
                                first_name:
                                  type: string
                                full_name:
                                  type: string
                                last_name:
                                  type: string
                                network_employee_id:
                                  type: integer
                                network_id:
                                  type: integer
                              type: object
                            adv_global_event:
                              properties:
                                advertiser_id:
                                  type: integer
                                entry_name:
                                  type: string
                                network_advertiser_global_event_id:
                                  type: integer
                                network_id:
                                  type: integer
                              type: object
                            advertiser:
                              properties:
                                account_status:
                                  enum:
                                    - active
                                    - inactive
                                    - pending
                                    - suspended
                                  type: string
                                name:
                                  type: string
                                network_advertiser_id:
                                  type: integer
                                network_id:
                                  type: integer
                              type: object
                            affiliate:
                              properties:
                                account_status:
                                  enum:
                                    - active
                                    - inactive
                                    - pending
                                    - suspended
                                  type: string
                                name:
                                  type: string
                                network_affiliate_id:
                                  type: integer
                                network_id:
                                  type: integer
                              type: object
                            affiliate_manager:
                              properties:
                                account_status:
                                  enum:
                                    - active
                                    - inactive
                                    - suspended
                                    - pending
                                  type: string
                                first_name:
                                  type: string
                                full_name:
                                  type: string
                                last_name:
                                  type: string
                                network_employee_id:
                                  type: integer
                                network_id:
                                  type: integer
                              type: object
                            affiliate_tier:
                              properties:
                                name:
                                  type: string
                                network_affiliate_tier_id:
                                  type: integer
                                network_id:
                                  type: integer
                                status:
                                  enum:
                                    - active
                                    - paused
                                    - deleted
                                  type: string
                              type: object
                            attribution_method:
                              enum:
                                - cookie
                                - transaction_id
                                - coupon_code
                                - email
                                - fingerprinting
                                - manual_upload
                                - clickless
                                - skad
                                - csv_upload
                                - webhook
                                - integration
                                - user_management
                              type: string
                            campaign:
                              properties:
                                campaign_name:
                                  type: string
                                campaign_status:
                                  enum:
                                    - active
                                    - paused
                                    - deleted
                                  type: string
                                network_campaign_id:
                                  type: integer
                                network_id:
                                  type: integer
                              type: object
                            candidate_clicks:
                              properties:
                                relationship:
                                  properties:
                                    affiliate:
                                      properties:
                                        account_status:
                                          enum:
                                            - active
                                            - inactive
                                            - pending
                                            - suspended
                                          type: string
                                        name:
                                          type: string
                                        network_affiliate_id:
                                          type: integer
                                        network_id:
                                          type: integer
                                      type: object
                                  type: object
                                transaction_id:
                                  type: string
                                unix_timestamp:
                                  type: integer
                              type: object
                            click_attribution_method:
                              type: string
                            conversion_referer:
                              type: string
                            custom_payout_revenue:
                              properties:
                                name:
                                  type: string
                                network_custom_payout_revenue_setting_id:
                                  type: integer
                                network_id:
                                  type: integer
                              type: object
                            events_count:
                              type: integer
                            is_enforce_caps:
                              type: boolean
                            line_items_custom_payout_revenue_settings:
                              properties:
                                name:
                                  type: string
                                network_custom_payout_revenue_setting_id:
                                  type: integer
                                network_id:
                                  type: integer
                              type: object
                            offer:
                              properties:
                                name:
                                  type: string
                                network_id:
                                  type: integer
                                network_offer_id:
                                  type: integer
                                offer_status:
                                  enum:
                                    - active
                                    - paused
                                    - pending
                                    - deleted
                                  type: string
                              type: object
                            offer_group:
                              properties:
                                name:
                                  type: string
                                network_advertiser_id:
                                  type: integer
                                network_id:
                                  type: integer
                                network_offer_group_id:
                                  type: integer
                                offer_count:
                                  type: integer
                                offer_group_status:
                                  enum:
                                    - active
                                    - paused
                                    - deleted
                                  type: string
                              type: object
                            offer_url:
                              properties:
                                name:
                                  type: string
                                network_id:
                                  type: integer
                                network_offer_id:
                                  type: integer
                                network_offer_url_id:
                                  type: integer
                              type: object
                            on_hold_snapshots:
                              properties:
                                initiator:
                                  enum:
                                    - manual
                                    - conversion_processing
                                    - conversion_update
                                    - csv
                                  type: string
                                network_employee:
                                  properties:
                                    account_status:
                                      enum:
                                        - active
                                        - inactive
                                        - suspended
                                        - pending
                                      type: string
                                    first_name:
                                      type: string
                                    full_name:
                                      type: string
                                    last_name:
                                      type: string
                                    network_employee_id:
                                      type: integer
                                    network_id:
                                      type: integer
                                  type: object
                                network_id:
                                  type: integer
                                on_hold_conversion_history_snapshot_id:
                                  type: integer
                                on_hold_conversion_id:
                                  type: string
                                snapshot_type:
                                  enum:
                                    - status
                                    - payout_revenue
                                  type: string
                                status:
                                  enum:
                                    - on_hold
                                    - approved
                                    - rejected
                                  type: string
                                unix_timestamp:
                                  type: integer
                              type: object
                            order_line_items:
                              properties:
                                discount:
                                  type: number
                                name:
                                  type: string
                                network_order_line_item_id:
                                  type: integer
                                order_id:
                                  type: integer
                                order_number:
                                  type: integer
                                price:
                                  type: number
                                product_id:
                                  type: integer
                                quantity:
                                  type: integer
                                sku:
                                  type: string
                              type: object
                            postback_control:
                              properties:
                                name:
                                  type: string
                                network_id:
                                  type: integer
                                network_postback_control_id:
                                  type: integer
                              type: object
                            redirect_url:
                              type: string
                            referer:
                              type: string
                            snapshots:
                              properties:
                                conversion_history_snapshot_id:
                                  type: integer
                                conversion_id:
                                  type: string
                                error_code:
                                  type: integer
                                initiator:
                                  enum:
                                    - manual
                                    - csv
                                    - bulk_payout_adjustment
                                    - twenty_four_metrics
                                    - reversal
                                    - avow
                                    - retroactive_tiered_commission
                                  type: string
                                network_employee:
                                  properties:
                                    account_status:
                                      enum:
                                        - active
                                        - inactive
                                        - suspended
                                        - pending
                                      type: string
                                    first_name:
                                      type: string
                                    full_name:
                                      type: string
                                    last_name:
                                      type: string
                                    network_employee_id:
                                      type: integer
                                    network_id:
                                      type: integer
                                  type: object
                                network_id:
                                  type: integer
                                payout:
                                  type: number
                                revenue:
                                  type: number
                                sale_amount:
                                  type: number
                                snapshot_type:
                                  enum:
                                    - status
                                    - payout_revenue
                                    - sale_amount
                                    - payout_revenue_and_sale_amount
                                  type: string
                                status:
                                  enum:
                                    - approved
                                    - rejected
                                    - pending
                                    - invalid
                                  type: string
                                unix_timestamp:
                                  type: integer
                              type: object
                            tiered_commission:
                              properties:
                                name:
                                  type: string
                                network_id:
                                  type: integer
                                network_tiered_commission_id:
                                  type: integer
                              type: object
                            unix_timestamp_postback:
                              type: integer
                            usm_data:
                              nullable: true
                              description: >-
                                User session management data. Null when not
                                applicable.
                              type: object
                            query_parameters:
                              type: object
                              description: >-
                                The query string parameters from the original
                                click URL.
                          type: object
                        revenue:
                          type: number
                        revenue_type:
                          type: string
                        sale_amount:
                          type: number
                        session_user_ip:
                          type: string
                        source_id:
                          type: string
                        status:
                          enum:
                            - approved
                            - rejected
                            - pending
                            - invalid
                          type: string
                        sub1:
                          type: string
                        sub2:
                          type: string
                        sub3:
                          type: string
                        sub4:
                          type: string
                        sub5:
                          type: string
                        sub6:
                          type: string
                        sub7:
                          type: string
                        sub8:
                          type: string
                        sub9:
                          type: string
                        sub10:
                          type: string
                        transaction_id:
                          type: string
                        url:
                          type: string
                  paging:
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
                    type: object
                type: object
          description: ''
      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

````