Get the metadata and content urls of an Instagram post
Query parameters
-
Instagram post/reel or any intagram content URL
GET
/instagram/download
curl \
-X GET https://api.itsrose.rest/instagram/download?url=https%3A%2F%2Fwww.instagram.com%2Fp%2FC85WbC_yPqJ
Response examples (200)
{
"status": true,
"message": "success",
"result": {
"username": "string",
"title": "string",
"metadata": {
"source": "string",
"shortcode": "string",
"comment_count": 42.0,
"like_count": 42.0,
"taken_at": 42.0,
"comments": [
{
"username": "string",
"text": "string"
}
]
},
"contents": [
{
"type": "string",
"ext": "string",
"url": "string"
}
]
}
}
Response examples (400)
{
"status": false,
"message": "string",
"result": {}
}
Response examples (401)
{
"status": false,
"message": "string",
"result": {}
}
Response examples (500)
{
"status": false,
"message": "string",
"result": {}
}