Instagram API Server

Server is running correctly.

✓ Status: Instagram API integration is configured and ready.

Available Endpoints

Example Usage

// 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));
        

Notes

Instagram images are served directly from Instagram's CDN without proxying.