Make
adResearch__getScrapedAds
Browse the competitor ads scraped into a project, with sorting (relevance, longest_running, newest) and media-type/keyword filters. This is the raw material for remixes.
Remote mesmerpercy/admakeai
Remote (network-hosted)
Other tools also called adResearch__getScrapedAds?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"default": 30,
"maximum": 100,
"minimum": 1
},
"offset": {
"type": "number",
"default": 0,
"minimum": 0
},
"search": {
"type": "string"
},
"sortBy": {
"enum": [
"relevance",
"newest",
"oldest",
"longest_running",
"popularity",
"recently_added"
],
"type": "string",
"default": "relevance"
},
"mediaType": {
"enum": [
"IMAGE",
"VIDEO",
"CAROUSEL",
"ALL"
],
"type": "string"
},
"projectId": {
"type": "string"
},
"searchTerm": {
"type": "string"
},
"competitorId": {
"type": "string"
},
"showIrrelevant": {
"type": "boolean",
"default": false
}
}
}