Query parameters

  • url string Required

    Instagram post/reel or any intagram content URL

Responses

  • 200 application/json

    Default Response

    Hide response attributes Show response attributes object
    • status boolean

      Default value is true.

    • message string

      Default value is success.

    • result object

      Additional properties are allowed.

      Hide result attributes Show result attributes object
  • 400 application/json

    Invalid request error

    Hide response attributes Show response attributes object
  • 401 application/json

    Authorization error

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
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": {}
}