extract_demographics
Analyze user engagement on Instagram by extracting demographic insights from accounts or posts. Input a URL and sample size to identify audience characteristics for strategic planning.
Instructions
Extract demographic insights from users engaged with a post or account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountOrPostUrl | Yes | Instagram account handle or post URL to analyze | |
sampleSize | No | Number of users to sample for demographic analysis (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"accountOrPostUrl": {
"description": "Instagram account handle or post URL to analyze",
"type": "string"
},
"sampleSize": {
"description": "Number of users to sample for demographic analysis (default: 50)",
"type": "number"
}
},
"required": [
"accountOrPostUrl"
],
"type": "object"
}