get_instagram_posts
Retrieve Instagram posts from any user by providing their username to access content and engagement data through the SociaVault API.
Instructions
Get Instagram posts from a user
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| handle | Yes | Instagram username | 
Input Schema (JSON Schema)
{
  "properties": {
    "handle": {
      "description": "Instagram username",
      "type": "string"
    }
  },
  "required": [
    "handle"
  ],
  "type": "object"
}