Endpoint advertising.spa.adgroups.data returns adgroup’s statistics for sponsored products ads (SPA).
AMALYZE Falcon API
advertising.spa.adgroups.data (POST)
Endpoint
Method
POST advertising.spa.adgroups.data
Example call
Shell
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | curl https://falcon.amalyze.com/<VERSION>/advertising.spa.adgroups.data \ -X POST \ -H "X-Falcon-Token: <YOUR-TOKEN-HERE>" \ -d ' { 	"filters":{ 		"start":"2018-07-31", 		"end":"2018-07-31", 		"marketplaceId": "A1PA6795UKMFR9", 		"clicks": [ 			{ 				"op": "gte", 				"value": 10 			} 		], 		"campaignId": "63511111122222" 	}, 	"metrics": [ 		"clicks", 		"impressions", 		"clickThroughRate", 		"salesSameSKU30D", 		"salesAllSKU30D", 		"conversionsAllSKU30D", 		"salesPerUnitAllSKU30D" 	], 	"pagination":{ 		"page":1, 		"size":1 	},"sorting":[ 		{ 			"direction":"desc", 			"column": "impressions" 		} 	] } ' | 
JSON Payload
JavaScript
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | { 	"filters":{ 		"start":"2018-07-31", 		"end":"2018-07-31", 		"marketplaceId": "A1PA6795UKMFR9", 		"clicks": [ 			{ 				"op": "gte", 				"value": 10 			} 		], 		"campaignId": "63511111122222" 	}, 	"metrics": [ 		"clicks", 		"impressions", 		"clickThroughRate", 		"salesSameSKU30D", 		"salesAllSKU30D", 		"conversionsAllSKU30D", 		"salesPerUnitAllSKU30D" 	], 	"pagination":{ 		"page":1, 		"size":1 	},"sorting":[ 		{ 			"direction":"desc", 			"column": "impressions" 		} 	] } | 
| Property | Type | Description | Further information | 
| pagination | object | The object containing the pagination information | pagination object definition | 
| filters | object | The object containing the filter information | |
| filters.start | date | String containing the start date | mandatory | 
| filters.end | date | String containing the end date | mandatory | 
| filters.adgroup | string | Filters for adgroup dimension | optional. Usage and valid filter for adgroup dimension | 
| filters.advertiser | string | Filters for advertiser dimension | optional. Usage and valid filter for advertiser dimension | 
| filters.campaign | string | Filters for campaign dimension | optional. Usage and valid filter for campaign dimension | 
| filters.marketplace | string | Filters for marketplace dimension | optional. Usage and valid filter for marketplace dimension | 
| filters.metrics | string | Filter for metrics | optional. Usage and valid metrics to filter | 
| metrics | array | Array containing the metrics to be returned | optional. Usage and valid metrics to return | 
| sorting | array | Array containing the sorting information | |
| sorting.column | string | The column to sort | 
 | 
| sorting.direction | string | The direction to sort | valid direction values | 
JSON Response
JavaScript
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | {     "items": [         {             "dimensions": {                 "advertiser": {                     "type": "seller",                     "id": "A1XXXXXXXXXXXX",                     "name": "Sample advertiser"                 },                 "marketplace": {                     "id": "A1PA6795UKMFR9",                     "name": "amazon.de"                 },                 "campaign": {                     "id": "61111111111111",                     "name": "Sample campaign",                     "type": "sponsoredProducts",                     "targeting": "auto",                     "bidPlus": true,                     "dailyBudget": 1000,                     "start": "2017-01-03T00:00:00+00:00",                     "end": null,                     "state": "enabled",                     "amalyzeManaged": false,                     "amalyzeTargeting": null,                     "amalyzeOptimization": null                 },                 "adgroup": {                     "id": "60111111111111",                     "name": "Sample adgroup",                     "state": "enabled",                     "defaultBid": 0.8                 }             },             "metrics": {                 "clicks": 130,                 "impressions": 168625,                 "clickThroughRate": 0.0007709414381023,                 "salesSameSKU30D": 195,                 "salesAllSKU30D": 353.98001098633,                 "conversionsAllSKU30D": 8,                 "salesPerUnitAllSKU30D": 44.247501373291             }         }     ],     "pagination": {         "filtered": 6     },     "request": {         "id": "250e1bc2-3113-4a65-8b56-09c015fdc009",         "took": 1.0377,         "costs": 0,         "remaining": 100000,         "method": "advertising.spa.adgroups.data",         "success": true,         "error": {             "code": null,             "message": null,             "hint": null         }     } } | 
| Property | Type | Description | 
| items | array | Array containing the merchant / vendor items | 
| metrics | object | Object containing the requested metrics | 
| dimensions | object | Object containing the dimensions | 
| dimensions.advertiser | object | Object containing the advertiser dimension object advertiser definition | 
| dimensions.marketplace | object | Object containing the marketplace dimension object marketplace definition | 
| dimensions.campaign | object | Object containing the campaign dimension object campaign definition | 
| dimensions.adgroup | object | Object containing the adgroup dimension object adgroup definition | 
| request | object | The request information object (see request information object definition for more information) | 
Updates / Changes
| Version | Description | 
