4
  1. What is the total number of images we can fetch per public profile
  2. If its only 200 like instagram, can we iteratively do it?
  3. Can we get the timestamp for each image fetched
Zisu
  • 497
  • 2
  • 6
  • 25

2 Answers2

2
  1. What is the total number of images we can fetch per public profile

you can fetch all photos using api

  1. If its only 200 like instagram, can we iteratively do it?

you can get 20 images per api call, and u can use pagination in api to iteratively get next set of 20

  1. Can we get the timestamp for each image fetched

all photos have created_time in api response which has timestamp

krisrak
  • 12,882
  • 3
  • 32
  • 46
1

You can also check below link

Instagram API: How to get all user media?

Community
  • 1
  • 1
Zisu
  • 497
  • 2
  • 6
  • 25