Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.tagdeliver.com/v1/report/adstxt \
--header 'Authorization: Bearer <token>'{
"results": [
{
"uid": 18620,
"file_found": true,
"ci_present": true,
"up_to_date": false,
"last_checked": "2025-05-14 10:10:03",
"content_type": "text/plain",
"source": "web",
"domain": "example.com"
}
],
"success": true
}Fetches a simple overview of every publisher in the given networks ads.txt file
curl --request GET \
--url https://api.tagdeliver.com/v1/report/adstxt \
--header 'Authorization: Bearer <token>'{
"results": [
{
"uid": 18620,
"file_found": true,
"ci_present": true,
"up_to_date": false,
"last_checked": "2025-05-14 10:10:03",
"content_type": "text/plain",
"source": "web",
"domain": "example.com"
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?