get_posts
Retrieve recent social media posts published through the Sociona API from X (Twitter), Instagram, and Threads. Specify how many posts to fetch to monitor your social media activity and content performance.
Instructions
Get recent posts published via the API
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of posts to retrieve (max 100) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Number of posts to retrieve (max 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}