get_instagram_posts
Fetch recent Instagram posts from a profile using Chrome login. Specify username, limit (1-3 posts or all), and starting index for pagination.
Instructions
Get recent posts from an Instagram profile using existing Chrome login
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of posts to fetch (1-3) or "all" for continuous batches | |
startFrom | No | Index to start fetching from (for pagination) | |
username | Yes | Instagram username to fetch posts from |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of posts to fetch (1-3) or \"all\" for continuous batches",
"type": [
"number",
"string"
]
},
"startFrom": {
"description": "Index to start fetching from (for pagination)",
"type": "number"
},
"username": {
"description": "Instagram username to fetch posts from",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}