API Endpoint: Statistics Reports
This page describes how to use the Katalys API to generate an aggregated Statistics Report to download analytics data. You use this method when you want click or behavioral information about your traffic.
URL:
https://api.katalys.com/v1/report/stats
Method:
POST
with a JSON payloadAuthentication:
Authorization
header with a Katalys API key is requiredResponse: JSON object with keys
rows
containing your data
Example using cURL:
curl -H 'Authorization: Apikey YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{ "dimensions":[...], "filters":[...] }' \
https://api.katalys.com/v1/report/stats
Limitations
Dimension Cardinality: This use case is primarily focused on driving low-cardinality reporting using dimensions with 20 or fewer values, such as "Device Type" (typically 3-5 values), or "Traffic Source" (typically 5-50 values).
If you run a statistics report and the time range, defined filters or selected dimensions result in a report that cannot be returned fully, then a warning will be included in the response object. Here is an example response showing the warning:
{
"rows": [ {}, {}, {}... ],
"warnings": [
{ "message": "Column \"Product Name\" is limited to 300 items. Add filters to limit your search." }
],
"errors": null
}
If you need full breakdowns, then you must download a raw Conversion Report and produce your own statistics.
Specification
This API method receives a JSON object with the following required objects.
dimensions
: Array of strings.
String values are named columns that can be included in a report. Some columns are "statistics", meaning they produce aggregations; other columns are "breakdowns", meaning they change the number of rows returned by breaking down the data.filters
: Array ofFilter
objects.
Objects must definefield
,type
, andvalues
.Filter.field
is a string specifying one of the defined available filters.Filter.type
is"include"
,"exclude"
, or"range"
. Therange
type is typically used for filtering ontime
.Filter.values
is a list of string values. Even numeric types, such as epoch times, must be passed as strings.
To be considered a valid query, every query you make must include:
a filter on the
time
fieldat least one "breakdown"
dimension
, andat least one "statistic"
dimension
.
If you use TypeScript, you can validate your query using the following TypeScript interface.
export interface KatalysApiRequest {
dimensions: string[];
filters: KatalysFilter[];
}
interface KatalysFilter {
field: string;
type: KatalysFilterType | `${KatalysFilterType}`;
values: string[];
}
enum KatalysFilterType {
INCLUDE = "include",
EXCLUDE = "exclude",
RANGE = "range",
}
Permissions for Dimensions
A reporting API request can include Partner-only dimensions, or Advertiser-only dimensions, but not both types at once. If any report includes both Advertiser and Partner dimensions, your request will fail.
The types Partner or Advertiser come from the type of Profiles owned by your Katalys organization. If your account owns an Advertiser profile, then you can select Advertiser dimensions. If your account owns a Partner profile, then you can select Partner dimensions.
If you wish to limit the reporting to just Advertiser-scoped or Publisher-scoped dimensions, it is recommended to define the org_id
filter and list the profiles you own of that type. This will ensure the expected permissions match the dimension types you are requesting.
Available Breakdown Dimension
By defining one or more of the below dimensions, you affect how many rows are returned from your query. We recommend limiting the number of breakdown dimensions to no more than 5 to ensure you do not hit the cardinality limit, which can hide some values from the result.
Field | Permissions | Description |
---|---|---|
| All types | Name and ID of Traffic Source |
| All types | ID of traffic source assigned by the Katalys network |
| All types | Name and ID of program |
| All types | ID of program assigned by the Katalys network |
| All types | Breakdown by day, specified as epoch-milliseconds. Day boundaries are defined by default in the |
| All types | Breakdown by hour-of-day, specified as as a numeric value from |
| All types | The landing page of the last-click attribution associated with the conversion |
| All types | Type of device used to place the conversion and/or the click. |
| All types | Number of days from click to conversion. Only populated when a click is associated with the conversion or appears in the attribution path |
| Advertisers Only | Total cost to drive conversions within the Katalys network |
| Advertisers Only | Product SKU as reported by Advertiser |
| Advertisers Only | Product Name as reported by Advertiser |
| Advertisers Only | Product Category as reported by Advertiser |
| Partners Only | The sum owed to Partners as compensation |
| Partners Only | Partner-provided field "sub1" |
| Partners Only | Partner-provided field "sub2" |
| Partners Only | Partner-provided field "sub3" |
| Partners Only | Partner-provided field "sub4" |
| Partners Only | Partner-provided field "sub5" |
| Partners Only | Partner-provided field "source" |
Available Statistic Dimensions
Define one or more statistic dimensions below into your API request to add values to each row that is returned.
Field | Permissions | Description | |
---|---|---|---|
| All types | Total number of unique clicks excluding invalid clicks on content within the Katalys network. See How We Count Clicks | |
| All types | Total number of times a customer has clicked on content within the Katalys network. | |
| All types | Number of digital views or engagements with content, if this metric is reported or implemented by the Partner. | |
| All types | Count of orders placed by any customer, regardless of conversion status | |
| All types | Count of approved conversions | |
| All types | Count of approved conversions attributed to clicks, excluding conversions that were triggered via usage of a coupon solely. | |
| All types | Conversion Rate is calculated by | |
| All types | Count of sessions driven by the Katalys network | |
| All types | Count of unique IP addresses for all visitors | |
| All types | Derived metric calculating “captured value” using all numbers received from the CRM. Since CRMs calculate subtotal in different ways, we use the lowest value of reported Subtotal, or reported Total minus tax/shipping. Used for calculating CPS. | |
| Advertisers Only | Actual cost to customer, via Advertiser's CRM. Typically, gross value of orders inc tax, shipping, and misc line items. | |
| Advertisers Only | Total cost to drive conversions within the Katalys network | |
| Advertisers Only | Count of sessions that saw at least one hit. Sessions may or may not have come from the Katalys Network. | |
| Partners Only | Amount paid to Partner | |
| Partners Only | Partner Earnings Per Click | |
| Partners Only | Partner Earnings Per User-session |
Available Filters
Field | Valid Types | Description |
---|---|---|
|
| Required for all API calls. Limits your report query to the epoch times specified in the range. Example: |
|
| (Recommended) Limits your report query to include only valid conversions. This will skip rejected conversions and conversions that were processed by Katalys but were not attributed to a Katalys affiliate. Example: |
|
| By specifying this filter, you change how dimensions like Default reporting timezone is Example: |
|
| Limits your results to the specified Profiles. Your Profile’s org_id value can be found in the URL of your KMP account. Example: |