Get click reports at the day/link granularity within a date range [start, end]
Method: GET (paginated)
Parameters:
Response:
{
"reports": [
{
"date": "string",
"marketplace": "amazon.com",
"clicks": 0,
"link": {
"id": "string",
"sourceId": "string",
"sourceSubId": "string",
"sourceName": "string",
"url": "string",
"active": true,
"type": "product",
"marketplace": "amazon.com"
},
"final": true
}
],
"cursor": "string"
}
Errors:
Example:
const API_KEY = "LEVANTA_API_KEY";
const ENDPOINT = "<https://app.levanta.io/api/creator/v1/reports/clicks>";
let cursor;
const reports = [];
// Set up query parameters
const parameters = new URLSearchParams();
// Get 50 reports per response
parameters.set("limit", 50);
// Get reports from January 15, 2023 to February 15, 2023
parameters.set("start", "2023-01-15T00:00:00.000Z");
parameters.set("end", "2023-02-15T00:00:00.000Z");
// Paginate through reports, stop when a value of null is returned for "cursor"
while (cursor !== null) {
const response = await fetch(`${ENDPOINT}?${parameters.toString()}`, {
method: "GET",
headers: {
Authorization: `Bearer ${API_KEY}`
}
});
const json = await response.json();
// Store reports returned
reports.push(...json.reports);
cursor = json.cursor;
if (cursor) parameters.set("cursor", cursor);
}
console.log(reports);