search_behaviors
Retrieve behavior targeting options for Meta Ads campaigns, including IDs, names, audience sizes, paths, and descriptions, using an access token and customizable result limit.
Instructions
Get all available behavior targeting options.
Args:
access_token: Meta API access token (optional - will use cached token if not provided)
limit: Maximum number of results to return (default: 50)
Returns:
JSON string containing behavior targeting options with id, name, audience_size bounds, path, and description
Input Schema
Name | Required | Description | Default |
---|---|---|---|
access_token | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"access_token": {
"default": null,
"title": "Access Token",
"type": "string"
},
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
}
},
"title": "search_behaviorsArguments",
"type": "object"
}