Get user reels — Instagram API
Returns a paginated list of reels from an Instagram user's profile, newest first. Maximum 8 reels per page. Includes video URLs, captions, and engagement counts.
GET
/v1/instagram/users/{username}/reels1 credit per requestExample response200OK
Make the request.
One authenticated GET to /v1/instagram/users/{username}/reels. 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
- Reel engagement benchmarking and virality score tracking
- Short-form video performance analysis for influencer audits
- Creator video content strategy research and competitive analysis
const response = await fetch("https://api.konbiniapi.com/v1/instagram/users/khaby00/reels", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
Parameters3
- usernamerequiredIn · PathType · stringInstagram username (with or without @ symbol)
- countIn · QueryType · integerNumber of reels to fetch (maximum: 8 — Instagram enforces this server-side)1–8default 8
- 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.