Skip to main content
POST
/
ad-visibility
curl \
  -X POST \
  -H "Authorization: Bearer $apikey" \
  -H "Content-Type: application/json" \
  -d '{
        "input": {
          "content": "iVBORw0KGgoAAA[...]",
          "title": "Example ad analysis"
        }
      }' \
  https://api.eyequant.com/v2/ad-visibility
{
  "location": "https://api.eyequant.com/v2/ad-visibility/3bdecb551a40414d9e80198744df08a5",
  "id": "3bdecb551a40414d9e80198744df08a5"
}
Create an ad visibility analysis from an ad image. The request returns immediately with an id — analyses are processed asynchronously, so poll Get an ad visibility analysis for the score.
input
object
required
The ad to analyze.
id
string
The unique identifier for the new ad visibility analysis.
location
string
The full URL where the result can be retrieved.
curl \
  -X POST \
  -H "Authorization: Bearer $apikey" \
  -H "Content-Type: application/json" \
  -d '{
        "input": {
          "content": "iVBORw0KGgoAAA[...]",
          "title": "Example ad analysis"
        }
      }' \
  https://api.eyequant.com/v2/ad-visibility
{
  "location": "https://api.eyequant.com/v2/ad-visibility/3bdecb551a40414d9e80198744df08a5",
  "id": "3bdecb551a40414d9e80198744df08a5"
}