Get user tagged posts — Instagram API
Returns Instagram posts where the user has been tagged by other accounts. Maximum 12 posts per page. Includes full post details and engagement counts.
GET
/v1/instagram/users/{username}/tagged1 credit per requestExample response200OK
Make the request.
One authenticated GET to /v1/instagram/users/{username}/tagged. Authentication and error conventions stay consistent across endpoints. This page shows the path, parameters, response shape, limits, and credit rule for this operation.
Built for
- User-generated content discovery and rights management
- Brand mention tracking in community-tagged posts
- Advocacy and ambassador activity monitoring
const response = await fetch("https://api.konbiniapi.com/v1/instagram/users/khaby00/tagged", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
Parameters3
- usernamerequiredIn · PathType · stringInstagram username (with or without @ symbol)
- countIn · QueryType · integerNumber of posts to fetch (maximum: 12)1–12default 12
- cursorIn · QueryType · stringPagination cursor
What you will probably call next.
The Instagram endpoints around this one — the same object at a different depth, or the same kind of read.
Try it on your own data.
Get a free API key and make this request in minutes. Failed and timed-out requests are automatically refunded.