Instagram API gets massive objects using comma separated identifiers

I have a simple application where I have massive Instagram object identifiers. I am looking for an API where I can send identifiers in the form of a comma separated string or similarly and get a list of Instagram objects. I cannot find the endpoint in the official Instagram API.

I don’t want to extract each object one by one, because I need to get massive data, and searching one by one will be too time-consuming and will exhaust my resources.

A similar function on twitter can be found below.

https://dev.twitter.com/rest/reference/get/statuses/lookup 

I am looking for a similar feature for Instagram. Is there any solution for this?

FYI I'm looking for a different solution than the Instagram endpoint - the tags / hello / media / recent, because I need information from several identifiers at the same time. In addition, the amount of information received by this endpoint is insufficient.

+7
endpoint instagram-api bulk
source share
2 answers

There is no API to receive multimedia data by id in bulk order, you have to make 1 API call per identifier in a loop.

The API limit is 5,000 calls per hour, so this may limit you to the number of numbers you want to receive.

You can use this API call in a loop to get media by id:

 https://api.instagram.com/v1/media/{media-id}?access_token=ACCESS-TOKEN 
0
source share

As krisrak said, there is no API for this. You can create your own, but it will have to send each request separately, since Instagram has its own API, and there is no way around this.

0
source share

All Articles