RTB Analysis
In this guide we're going to see how you can create a Real Time Bidding analysis.
RTB analysis allows to detect and scan ads inside Real Time Bidding URL's.
Prerequisites
Since RTB analyses are done programatically (via API) you will need to configure your environment to use the AdSecure API.
Here you can find the API quickstart guide and the first analysis guide, both are necessary in order to proceed successfully.
Create a RTB analysis
RTB analysis are regular analysis, the difference being that they will scan the AD inside the RTB URL instead of the URL itself.
Like in the first analysis guide, you will send a graphql query in order to create this analysis type, just make sure your input contains the supportingFormat
parameter set to RTB like in the query below:
Query
mutation {
createAnalysis(input: {
name: "RTB Test Analysis",
content: "<INSERT RTB URL HERE>",
supportingFormat: "RTB"
}) {
id
report {
url
}
name
}
}
Response
{
"data": {
"createAnalysis": {
"id": "<REPORT ID>",
"report": {
"url": "https://<REPORT-URL>/.../<REPORT ID>.json"
},
"name": "RTB Test Analysis"
}
}
}
Once the analysis is finished, you can follow the understanding analysis results guide to check the resulting report.