search_app_advertiser
Search the Apple Ad Repository for apps or developers advertising on the EU App Store. Returns ids to use with get_competitor_ads. Start here with your competitor's app name.
Parameters2
| name | string | required | App or developer name to search for |
| types | string | optional |
Raw schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 2,
"description": "App or developer name to search for"
},
"types": {
"type": "string",
"enum": [
"APP",
"DEVELOPER"
]
}
},
"required": [
"name"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}