Endpoint advertising.spa.marketplaces.data
returns merchant’s statistics for sponsored products ads (SPA).
AMALYZE Falcon API
advertising.spa.marketplaces.data (POST)
Endpoint
Method
POST advertising.spa.marketplaces.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.marketplaces.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": 1000 } ] }, "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": 1000 } ] }, "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.advertiser | string | Filters for advertiser dimension | optional. Usage and valid filter for advertiser dimension |
filters.marketplace | string | Filters for marketplace dimension | optional. Usage and valid filter for marketplace dimension |
filters.placement | string | Filters for placement dimension | optional. Usage and valid filter for placement 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 |
{ "items": [ { "dimensions": { "marketplace": { "id": "A1PA6795UKMFR9", "name": "amazon.de" } }, "metrics": { "clicks": 60355, "impressions": 16400926, "clickThroughRate": 0.0036799751428669, "salesSameSKU30D": 66750.879840851, "salesAllSKU30D": 126942.28975797, "conversionsAllSKU30D": 5396, "salesPerUnitAllSKU30D": 20.762559659465 } } ], "pagination": { "filtered": 8 }, "request": { "id": "4a9b729f-306d-44ca-9688-88cbeb2ee8ec", "took": 0.3258, "costs": 0, "remaining": 100000, "method": "advertising.spa.marketplaces.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.marketplace | object | Object containing the marketplace dimension object marketplace definition |
request | object | The request information object (see request information object definition for more information) |
Updates / Changes
Version | Description |