identify_leads
Analyze Instagram account or post engagement patterns to identify potential leads based on specified criteria like comment activity, follower count, and keywords in bios or comments.
Instructions
Identify potential leads based on engagement patterns
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountOrPostUrl | Yes | Instagram account handle or post URL to analyze | |
criteria | No | Criteria for identifying leads |
Input Schema (JSON Schema)
{
"properties": {
"accountOrPostUrl": {
"description": "Instagram account handle or post URL to analyze",
"type": "string"
},
"criteria": {
"description": "Criteria for identifying leads",
"properties": {
"keywords": {
"description": "Keywords to look for in user comments or bio",
"items": {
"type": "string"
},
"type": "array"
},
"minComments": {
"description": "Minimum number of comments from a user",
"type": "number"
},
"minFollowers": {
"description": "Minimum number of followers a user should have",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"accountOrPostUrl"
],
"type": "object"
}