App Logo
instagram.com

Get Instagram tagged posts

Fetch posts an Instagram user is tagged in, by their numeric user_id (from get_profile). Returns total_count, next_max_id (pass back as max_id to paginate), and posts (code, url, owner, like_count, comment_count, caption, thumbnail, media_type, taken_at). Only tagged posts the account allows to be shown are returned.

Input

user_id required

Numeric user id of the tagged account (get_profile returns it as user_id).

count optional

Max posts per page.

Default: 12
max_id optional

Pagination cursor from a previous call's next_max_id. Omit for the first page.

Output

posts required
user_id required
next_max_id optional
total_count optional

FAQ

Fetch posts an Instagram user is tagged in, by their numeric user_id (from get_profile). Returns total_count, next_max_id (pass back as max_id to paginate), and posts (code, url, owner, like_count, comment_count, caption, thumbnail, media_type, taken_at). Only tagged posts the account allows to be shown are returned.
Required: user_id. Optional: count, max_id.
It returns posts, user_id, next_max_id, total_count.
Yes. It acts as you on instagram.com: on your own Chrome it reuses your session, and on a Reduck-hosted browser it loads the instagram.com cookies saved by the Reduck extension.
Unknown: its author has not declared whether it changes anything on instagram.com, so treat it as if it could.
Ask an AI agent connected to Reduck to run reduck/instagram.com/get_tagged_posts, or run it from a terminal with the Reduck CLI: npx @reduck-ai/cli@latest run --script reduck/instagram.com/get_tagged_posts
It is part of Reduck's official curated catalogue.

Start building not clicking