Download Instagram Reels, Posts, Videos and Images using a simple REST API.
https://api.reelsaver.store/api/v1
Every request must include your API Key.
x-api-key: Loading...
Download Instagram Reels, Posts, Videos and Images using your API key.
https://api.reelsaver.store/api/v1/download
Every API request requires a valid API key.
x-api-key: YOUR_API_KEY
| Header | Required | Description |
|---|---|---|
x-api-key |
Required | Your ReelSaver API key. |
Content-Type |
Recommended |
application/json
|
Accept |
Recommended |
application/json
|
Send the Instagram URL as a JSON object.
{
"url": "https://www.instagram.com/reel/XXXX/"
}
The API currently accepts:
Supported URL patterns include:
/reel/,
/p/,
/tv/,
and
/stories/.
| Parameter | Type | Required | Description |
|---|---|---|---|
url |
string | Required | Valid Instagram Reel, Post, TV or Story URL. |
curl -X POST "${API}/download" \
-H "x-api-key: YOUR_API_KEY" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.instagram.com/reel/XXXX/"}'
A successful request returns a JSON response containing the extracted media information.
{
"success": true,
"data": {
"type": "video",
"media": [
{
"type": "video",
"url": "https://..."
}
]
}
}
The exact media information may vary depending on the Instagram content.
| Status | Message | Meaning |
|---|---|---|
| 401 |
API key required
|
No API key was provided. |
| 403 |
Invalid API key
|
The API key is invalid or disabled. |
| 429 |
Monthly limit exceeded
|
The developer has reached the monthly request limit. |
Stories can also be processed using the dedicated Story endpoint.
POST ${API}/download/story
Authentication and request format are the same as the main download endpoint.
{
"url": "https://www.instagram.com/stories/username/1234567890/"
}
{
"success": true,
"data": {
"title":"Example",
"thumbnail":"...",
"media":[
{
"type":"video",
"url":"https://..."
}
]
}
}
| Code | Description |
|---|---|
| 400 | Invalid URL |
| 401 | Invalid API Key |
| 403 | API Key Disabled |
| 429 | Monthly Limit Reached |
| 500 | Internal Server Error |
Loading...
Paste any Instagram Reel, Post or Video URL and test the API instantly.
No request made yet.