Incrementality Results
const url = 'https://backend.podscribe.ai/api/public/incrementality';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"advertiser":"example","aggregationLevel":"channel","channelType":"podcast","action":"example","startDate":"example","endDate":"example","includeErrors":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://backend.podscribe.ai/api/public/incrementality \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "advertiser": "example", "aggregationLevel": "channel", "channelType": "podcast", "action": "example", "startDate": "example", "endDate": "example", "includeErrors": "example" }'Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”object
List of advertiser names separate by comma.
Aggregation level to use when reporting data. Default ‘channel’
Comma-separated list of channel types to report. Only applicable with aggregationLevel ‘channel’. Default ‘all’
Comma-separated list of actions to report. By default, all actions are reported
Start date timestamp eg 2024-10-01. Default 3 months ago
End date timestamp eg 2024-10-31. Default today
Include data with errors leading to no incremetality data. Default False
Responses
Section titled “Responses”An array of incrementality results.
object
The name of the advertiser.
Aggregation level used, such as ‘channel’, ‘publisher’, or ‘show_campaign’.
Type of channel (e.g., ‘podcast’, ‘streaming’, ‘all’).
The action measured for incrementality.
Country code where the data applies.
Start date of period over which incrementality is measured.
End date of period over which incrementality is measured.
Name of the campaign associated with the incrementality data.
Publisher of the campaign.
Action count in the control group.
Action count in the test group.
Size of the control group.
Size of the test group.
Calculated lift between test and control groups.
Calculated Incremental percent between test and control groups.
Lower bound of the confidence interval for lift percent.
Upper bound of the confidence interval for lift percent.
Lower bound of the confidence interval for incremental percent.
Upper bound of the confidence interval for incremental percent.
Example
[ { "country": "GLOBAL" }]Invalid data
Unexpected error.
object
Nodejs Error
object
Examplegenerated
{ "message": {}}