get_interest_suggestions
Generate targeted interest suggestions for Meta Ads campaigns by analyzing existing interests, providing relevant options with audience size and descriptions for optimization.
Instructions
Get interest suggestions based on existing interests.
Args:
access_token: Meta API access token (optional - will use cached token if not provided)
interest_list: List of interest names to get suggestions for (e.g., ["Basketball", "Soccer"])
limit: Maximum number of suggestions to return (default: 25)
Returns:
JSON string containing suggested interests with id, name, audience_size, and description fields
Input Schema
Name | Required | Description | Default |
---|---|---|---|
access_token | No | ||
interest_list | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"access_token": {
"default": null,
"title": "Access Token",
"type": "string"
},
"interest_list": {
"default": null,
"items": {
"type": "string"
},
"title": "Interest List",
"type": "array"
},
"limit": {
"default": 25,
"title": "Limit",
"type": "integer"
}
},
"title": "get_interest_suggestionsArguments",
"type": "object"
}