Metrics (Common)
- Startseite
- chevron_right
- Falcon
- chevron_right
- Metrics (Common)
AMALYZE Falcon API
Metrics Object
Request
Specifies the required metrics to be returned. See table below for valid values.
JavaScript
1 2 3 4 5 6 |
"metrics": { "impressions", "clicks", "salesOtherSKU30D", "unitsPerConversionAllSKU30D" } |
This example will return impressions
, clicks
, salesOtherSKU30D
, unitsPerConversionAllSKU30D
Sorting Object
Request
Specifies the (metric) colums and directions to be sorted for. See table below for valid values.
JavaScript
1 2 3 4 5 6 |
"sorting": [ { "column": "impressions", "direction": "desc" } ] |
This example will sort by impressions
in descending
order
Filter Object
Request
Specifies the (metric) filters to be applied. See table below for valid values.
JavaScript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"filters": { "impressions": [ { "op": "gte", "value": 1 }, { "op": "lte", "value": 1000 } ], "clicks": [ { "op": "gte", "value": 100 } ] } |
This example will return only entries having impressions >= 1 && impressions <= 1000 && clicks >= 100
Property | Description | Comment |
impressions | Total ad impressions | since 0.1.14 |
clicks | Total ad clicks | since 0.1.14 |
cost | Total cost of all clicks | since 0.1.14 |
clickThroughRate | ctr = clicks / impressions | since 0.1.14 |
costPerClick | cpc: cost / clicks | since 0.1.14 |
costPerMille | cpm = cost / (impressions / 1000 ) | since 0.1.14 |
| Number of attributed sales occurring within 1,7,14 and 30 day(s) of click on ad. | since 0.1.14 |
| Aggregate value of attributed sales occurring within 1,7,14 and 30 day(s) of click on ad where the purchased SKU was the same as the one advertised. | since 0.1.14 |
| Number of attributed conversion events occurring within 1, 7, 14 and 30 day(s) of click on ad. | since 0.1.14 |
| Number of attributed conversion events occurring within 1, 7, 14 and 30 day(s) of click on ad where the purchased SKU was the same as the one advertised. | since 0.1.14 |
| Number of attributed units ordered within 1, 7, 14 and 30 day(s) of click on ad. | since 0.1.14 |
| Average cost per attributed conversion events occuring within 1,7,14 and 30 days of click on adcpcr = cost / conversions | since 0.1.14 |
| Average cost per attributed conversion events occuring within 1,7,14 and 30 days of click on ad where the purchased SKU was the same as the one advertisedcpcr = cost / conversions | since 0.1.14 |
| Average sales / revenue per attributed conversion events occuring within 1,7,14 and 30 days of click on adspcr = sales / conversions | since 0.1.14 |
| Average sales / revenue per attributed conversion events occuring within 1,7,14 and 30 days of click on ad where the purchased SKU was the same as the one advertisedspcr = sales / conversions | since 0.1.14 |
| Average cost per attributed units ordered within 1,7,14 and 30 days of click on adcpu = cost / units | since 0.1.14 |
| Average cost per attributed units ordered within 1, 7, 14 and 30 day(s) of click on ad where the purchased SKU was the same as the one advertisedcpu = sales / units | since 0.1.14 |
| Average conversion rate per attributed conversion events occuring within 1, 7, 14 and 30 day(s) of click on adcr = conversions / clicks | since 0.1.14 |
| Average conversion rate per attributed conversion events occuring within 1, 7, 14 and 30 day(s) of click on ad where the purchased SKU was the same as the one advertisedcr = conversions / clicks | since 0.1.14 |
| Advertising cost of sale per atributed conversion event occuring within 1,7,14 and 30 day(s) of click on adacos = cost / sales | since 0.1.14 |
| Advertising cost of sale per atributed conversion event occuring within 1,7,14 and 30 day(s) of click on ad where the purchased SKU was the same as the one advertisedacos = cost / sales | since 0.1.14 |
| Return on advertising spend per atributed conversion event occuring within 1,7,14 and 30 day(s) of click on adroas = sales / cost | since 0.1.14 |
| Return on advertising spend per atributed conversion event occuring within 1,7,14 and 30 day(s) of click on ad where the purchased SKU was the same as the one advertisedroas = sales / cost | since 0.1.14 |
| Average sales / revenues per thousand impressions per attributed sales occuring within 1,7,14 and 30 day(s) of click on adspm = sales / (impressions / 1000) | since 0.1.14 |
| Average sales / revenues per thousand impressions per attributed sales occuring within 1,7,14 and 30 day(s) of click on ad where the purchased SKU was the same as the one advertisedspm = sales / (impressions / 1000) | since 0.1.14 |
| Average conversions per thousand impressions per attributed sales occuring within 1,7,14 and 30 day(s) of click on adcvpm = conversions / (impressions / 1000) | since 0.1.14 |
| Average conversions per thousand impressions per attributed sales occuring within 1,7,14 and 30 day(s) of click on ad where the purchased SKU was the same as the one advertisedcvpm = conversions / (impressions / 1000) | since 0.1.14 |
| Average units per attributed conversion events occuring 1,7,14 and 30 day(s) of click on adupc = units / conversions | since 0.1.14 |