Get user posts — Instagram API
Returns a paginated list of posts from an Instagram user's profile feed. Maximum 12 posts per page. Includes photos, videos, carousels, and engagement counts.
GET
/v1/instagram/users/{username}/posts1 credit per requestExample response200OK
Make the request.
One authenticated GET to /v1/instagram/users/{username}/posts. 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
- Post performance analysis and engagement rate benchmarking
- Content cadence and publishing strategy research
- Competitor feed monitoring for creative and campaign insights
const response = await fetch("https://api.konbiniapi.com/v1/instagram/users/khaby00/posts", {
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.