API Endpoint: Conversion Report
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/conversions
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/conversions
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. All columns specify one additional value to include in each JSON object, returned in therows
array.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.
Every query must include a filter on the time
field.
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 Dimensions
Field | Permissions | Description |
---|---|---|
| All types | This is a unique ID created per conversion within the Katalys system guaranteed to be unique inside of Katalys. |
| All types | Time the order was placed. |
| All types | Order ID as reported by Advertiser. |
| All types | The derived value of the order, as calculated as Topline Sales amount, minus tax and shipping. |
| All types | Attribution status for Katalys network |
| 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 | A non-unique ID that is used for short-term attribution to a user event, like a click, used to look up session info when a conversion happens, but not for events like coupon or direct link tracking. Can assist partners with downstream performance tracking. |
| Advertisers Only | Total cost to drive conversions within the Katalys network |
| 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 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: |
|
| Limits your results to the specified Profiles. Your Profile’s org_id value can be found in the URL of your KMP account. Example: |