Server is running correctly.
/api/instagram/user/{username} - Get Instagram user profile/api/instagram/user/posts/{username} - Get user posts/api/instagram/user/reels/{username} - Get user reels/api/health - Check API health status
// Get user profile
fetch('/api/instagram/user/cristiano')
.then(res => res.json())
.then(data => console.log(data));
// Get user posts (default: 15 posts)
fetch('/api/instagram/user/posts/cristiano')
.then(res => res.json())
.then(data => console.log(data));
// Get user reels (default: 15 reels)
fetch('/api/instagram/user/reels/cristiano')
.then(res => res.json())
.then(data => console.log(data));
// Pagination example for reels
fetch('/api/instagram/user/reels/cristiano?cursor=PAGINATION_TOKEN')
.then(res => res.json())
.then(data => console.log(data));
Instagram images are served directly from Instagram's CDN without proxying.