search_interests
Identify relevant interest targeting options for Meta Ads campaigns by keyword search. Retrieve interest data including ID, name, audience size, and path in JSON format to optimize ad targeting strategies.
Instructions
Search for interest targeting options by keyword.
Args:
access_token: Meta API access token (optional - will use cached token if not provided)
query: Search term for interests (e.g., "baseball", "cooking", "travel")
limit: Maximum number of results to return (default: 25)
Returns:
JSON string containing interest data with id, name, audience_size, and path fields
Input Schema
Name | Required | Description | Default |
---|---|---|---|
access_token | No | ||
limit | No | ||
query | No |
Input Schema (JSON Schema)
{
"properties": {
"access_token": {
"default": null,
"title": "Access Token",
"type": "string"
},
"limit": {
"default": 25,
"title": "Limit",
"type": "integer"
},
"query": {
"default": null,
"title": "Query",
"type": "string"
}
},
"title": "search_interestsArguments",
"type": "object"
}