Instagram Reel Info

POST

/instagram-reel-info

Get information about an Instagram reel

Retrieves metadata information about a given Instagram reel.

Request Body

The URL of the Instagram reel to get information about.

url
Required
string

The full URL of the Instagram reel.

Example: "https://www.instagram.com/reel/DBElt2UIuUG/?utm_source=ig_web_copy_link"
Status codeDescription
200Success. Reel information returned.
400Bad Request. The provided URL is invalid.
401Unauthorized. Invalid or missing API key.
500Server error.
curl
curl -X POST "https://tinyapis.io/instagram-reel-info" \
  -d '{
  "url": "https://www.instagram.com/reel/DBElt2UIuUG/?utm_source=ig_web_copy_link"
}'
Example Response
{
  "data": {
    "caption": "Benefits of walking #Walk #Lifestyle #Fitness #ForYou #Tips #Exercise #Motivation",
    "video_url": "https://scontent-dus1-1.cdninstagram.com/o1/v/t16/f1/m86/1E4963ABADCEA2A59E4165DE1644559C_video_dashinit.mp4",
    "thumbnail": "https://scontent-dus1-1.cdninstagram.com/v/t51.29350-15/463229339_1221384539069485_7521913293930625028_n.jpg",
    "like_count": 20258,
    "comments_count": 187
  }
}