Search Instagram posts by hashtag. Returns post URL, author username, publication date, and caption snippet for each result. Supports fetching multiple pages of results in a single API call.
curl "https://api.apidirect.io/v1/instagram/posts?query=technology&pages=2" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"posts": [
{
"title": "@instagramuser on Instagram",
"url": "https://instagram.com/p/...",
"date": "2024-01-15 14:30:00",
"author": "instagramuser",
"source": "Instagram",
"snippet": "Post caption here..."
}
],
"pages": 2,
"count": 24
}