1. Conversions
Incomaker Reporting v1
  • Abandoned carts
    • Get abandoned carts list
      GET
    • Get abandoned carts detail
      GET
  • Campaigns
    • Get campaigns count and metrics by language
      GET
    • Get campaigns list
      GET
    • Get campaigns daily results
      GET
    • Get campaigns monthly summanry
      GET
    • Get campaigns results hourly histogram
      GET
    • Get campaigns results daily histogram
      GET
    • Get campaigns results monthly histogram
      GET
    • Get list of senders
      GET
    • Get list of contacts timeline for campaign
      GET
    • Get list of contacts for campaign
      GET
    • Get list of contacts for period
      GET
    • Get A/B tests for campaigns
      GET
    • Get campaign conversions
      GET
    • Get campaign recipient list
      GET
    • Get campaign recipient activity timeline
      GET
    • Get campaign link click stats
      GET
  • Conversions
    • Get conversions list
      GET
    • Get total conversions
      GET
    • Get conversions by timeframe
      GET
    • Get conversions history
      GET
  • Contacts
    • Get contacts
      GET
    • Get contacts details
      GET
    • Get contacts recommendation
      GET
    • Get unsubscribed contacts
      GET
    • Get duplicate contacts
      GET
    • Get contacts with invalid names
      GET
    • Get contact gender statistics
      GET
  • Segments
    • Get segments list
  • Deliveries
    • Get deliveries list
    • Get delivery conversions
    • Get delivery-specific conversions
    • Get delivery recipient activity
    • Get recipient activity timeline
    • Get delivery link click stats
    • Get delivery detail
    • Get deliveries count and metrics by language
    • Get deliveries daily results
    • Get delivery daily detail for individual smartflow
  • RFM Analysis
    • Get Recency × Frequency heatmap
    • Get Recency × Monetary heatmap
    • Get Frequency × Monetary heatmap
    • Get full RFM cube or slices
    • Get recency distribution
    • Get frequency distribution
    • Get monetary distribution
    • Get combined RFM distributions
    • Get cell table
    • Get cell detail
    • Get contacts in cell
    • Get contact RFM detail
    • Get RFM Segments
    • Get RFM outliers
    • Get review candidates
  • Dialogs
    • Get dialogs list
    • Get dialogs data
  • Orders
    • Get orders list
    • Get order detail
    • Get order recommendation
  • Products
    • Get products
    • Get individual purchases for a product
    • Get products frequently purchased together
    • Get product categories
    • Get product detail
    • Get products by campaign
    • Get products by revenues
    • Get products recommendation
  • Schemas
    • Paging
    • ConversionAggregate
    • Contact
  1. Conversions

Get conversions list

GET
/conversions
Retrieve a list of campaigns with aggregated conversions data for the selected period.

Request

Query Params

Header Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠403
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/conversions?dateFrom=2026-01-01&dateTo=2026-01-31&country=CZ%2CSK&currency=EUR%2CCZK&limit=100&offset=0&q=Alpha&sort=-campaignId%2Cname' \
--header 'Authorization: Bearer JWT'
Response Response Example
200 - Success
{
    "conversions": [
        {
            "campaignId": "11ed6a77-93c1-1330-bf67-c7acfbf36741",
            "name": "AUTO_Vratkový formulář - 48 hodin dopravy zdarma",
            "datetime": "2026-01-21T07:17:51.000Z",
            "conversionsAmountWoTax": 1205826.9,
            "conversionsAmountWTax": 1452553.28,
            "conversionsNumber": 1321,
            "referenceCurrency": "CZK",
            "uniqueContacts": 2171,
            "averageConversion": 1099.59,
            "averageUniqueConversion": 669.07,
            "breakdown": [
                {
                    "currency": "CZK",
                    "conversionsAmountWoTax": 638588.07,
                    "conversionsAmountWTax": 772667,
                    "conversionsNumber": 785,
                    "conversionAmountWoTaxReference": 638588.07,
                    "conversionAmountWTaxReference": 772667,
                    "averageConversion": 984.29
                },
                {
                    "currency": "EUR",
                    "conversionsAmountWoTax": 18257.68,
                    "conversionsAmountWTax": 21921.2,
                    "conversionsNumber": 400,
                    "conversionAmountWoTaxReference": 455054.42,
                    "conversionAmountWTaxReference": 546363.99,
                    "averageConversion": 54.8
                }
            ]
        }
    ],
    "paging": {
        "start": 1,
        "count": 5,
        "totalCount": 12
    }
}
Modified at 2026-06-08 15:36:31
Previous
Get campaign link click stats
Next
Get total conversions
Built with