Downloader
Download Reels, Stories, and Post media from Instagram.
GET /v1/instagram/download
https://api.cludz.net/v1/instagram/download
Fetch media from an Instagram URL. Supports Posts, Reels, and Stories.
Query Parameters:
| Parameter | Required | Description | Type |
|---|---|---|---|
url | Yes | The valid Instagram URL (Post, Reel, or Story). | string |
format | No | mp4 or mp3. Defaults to mp4. | string |
Example
curl "https://api.cludz.net/v1/instagram/download?url=https://www.instagram.com/p/..." \
-H "X-API-Key: YOUR_API_KEY"
const res = await fetch('https://api.cludz.net/v1/instagram/download?url=...', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await res.json();
const res = await fetch('https://api.cludz.net/v1/instagram/download?url=...', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await res.json();
import requests
url = "https://api.cludz.net/v1/instagram/download"
params = {"url": "https://www.instagram.com/p/..."}
headers = {"X-API-Key": "YOUR_API_KEY"}
response = requests.get(url, headers=headers, params=params)
data = response.json()
Response
{
"statusCode": 202,
"statusMessage": "Accepted",
"message": "Download task created",
"data": {
"taskId": "tsk_123456789",
"status_url": "/v1/tasks/tsk_123456789"
}
}
This endpoint uses background tasks. Poll the
status_url or use the Tasks API to get the final search results.