Instagram is a mobile, desktop, and Internet-based photo-sharing application and service that allows users to share pictures and videos either publicly, or privately to pre-approved followers. Instagram lets registered users upload photos or videos to the service. Users can apply various digital filters to their images, and add locations through geotags. They can add hashtags to their posts, linking the photos up to other content on Instagram featuring the same subject or overall topic. Users can connect their Instagram account to other social media profiles, enabling them to share photos to those profiles as well.

Submitting the API request

This is sample CURL request you can use to test JustLikeAPI features.

Please make sure to replace:
- YOUR_API_KEY with the one you received from our support team
- PAGE_SPECIFIC_URL - with the endpoint of the method you're trying to invoke
- JSON payload - with the contents of your request (the sample payload for each request is given below)

curl -X POST https://api.justlikeapi.io/reviews/get -H 'authorization: Bearer YOUR_API_KEY' -H 'cache-control: no-cache' -H 'content-type: application/json' -d '{ "propertyUrl": "https://www.instagram.com/p/PAGE_ID/"}'

Read operations

Executing the below request will write/overwrite the content with the content given in the sample code bellow:

Request

{

"propertyUrl" : "https://www.instagram.com/p/CjqRXxULvwF/",
"dateFrom" : "2022-01-15", *
"reviewLimit":"2" **

}

 * “dateFrom” is optional

** “reviewLimit” is also optional (retrieves a specified number of reviews)

Base URL : https://justlikeapi.io/reviews/get

Parameter content type: application/json

Response

{
    "authorProfile": {
          "name": "nike nikesportswear",
          "image": "https://instagram.fbeg5-1.fna.fbcdn.net/v/t51.2885-19/301998892_4994402373998653_6530612050953021819_n.jpg?stp=dst-jpg_s150x150&_nc_ht=instagram.fbeg5-1.fna.fbcdn.net&_nc_cat=1&_nc_ohc=MSP81BfQDngAX9izHHg&edm=ALQROFkBAAAA&ccb=7-5&oh=00_AT9LPbdszJlFMG3o4N7CkA0CVmxDj99OzI0vn7tDTwtVdw&oe=63567D17&_nc_sid=30a2ef"
    },
    "postUrl": "https://www.instagram.com/p/CjqRXxULvwF/",
    "postImage": "https://instagram.fbeg5-1.fna.fbcdn.net/v/t51.2885-15/311206705_5631621796923803_9218472628061563021_n.jpg?stp=dst-jpg_e35&_nc_ht=instagram.fbeg5-1.fna.fbcdn.net&_nc_cat=1&_nc_ohc=F-de_co11EAAX9mFKsn&edm=ALQROFkBAAAA&ccb=7-5&ig_cache_key=Mjk0ODI0NTMwMjIyMjMyNzczMA%3D%3D.2-ccb7-5&oh=00_AT_1xGWGDRMpP2Qz-j-X3YT3aPTkFKkhtPd6qsTd1i4SXw&oe=6357D99B&_nc_sid=30a2ef",
    "likes": "267712",
    "comments": [
        {
            "profile": {
                "name": "nikesportswear Verified",
                "image": "https://instagram.fbeg5-1.fna.fbcdn.net/v/t51.2885-19/301998892_4994402373998653_6530612050953021819_n.jpg?stp=dst-jpg_s150x150&_nc_ht=instagram.fbeg5-1.fna.fbcdn.net&_nc_cat=1&_nc_ohc=MSP81BfQDngAX9izHHg&edm=APU89FABAAAA&ccb=7-5&oh=00_AT-NumA_SI7Z7Uq9OvhLupSEN7qlZ1YnUJmisQ1xY0uAiA&oe=63567D17&_nc_sid=86f79a"
            },
            "commentId": "17911849034536691",
            "text": "Produced in partnership with an incredible creative community… 🎥: @indiasleem 🎞: @cambio_was_here 📸: @matthewyoscary 🎀: @simonrasmussen 💄: @makeupbysammiek 💇‍♀️: @faizah_husniyah",
            "commentDate": "2022-10-13"
        },
        {
            "profile": {
                "name": "badboy_soondem",
                "image": "https://instagram.fbeg5-1.fna.fbcdn.net/v/t51.2885-19/312027677_842568310103673_5776156786317482354_n.jpg?stp=dst-jpg_s150x150&_nc_ht=instagram.fbeg5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=MPkiiFX2W-0AX9wabVO&tn=6ixDgxhbGSfjDsNo&edm=AId3EpQBAAAA&ccb=7-5&oh=00_AT9jtr06tIJPU58zGvHZ0u422GRgdJIjfYsZw2cBDEa6QQ&oe=63567503&_nc_sid=705020",
            }
            "commentId": "17939986472251997",
            "text": "❤️😍",
            "commentDate": "2022-10-13"
        }
    ]
}