VOOZH about

URL: https://apify.com/transcriptdl/instagram-audio---reel-post-audio-downloader

⇱ Instagram Audio – Reel & Post Audio Downloader Β· Apify


πŸ‘ Instagram Audio – Reel & Post Audio Downloader avatar

Instagram Audio – Reel & Post Audio Downloader

Pricing

Pay per usage

Go to Apify Store

Instagram Audio – Reel & Post Audio Downloader

Verified 99.4% Success. BULK process and extract audio from Instagram reels and posts using a URL. Returns a downloadable file when available or indicates when the post has no audio.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

πŸ‘ Transcript Downloader

Transcript Downloader

Maintained by Community

Actor stats

1

Bookmarked

24

Total users

0

Monthly active users

2 months ago

Last modified

Share

🎡 Transcript Downloader - Instagram Audio Scraper Extractor & Downloader

Convert Instagram reels and video posts into downloadable audio files using the Transcript Downloader API. Ideal for music extraction, content repurposing, and offline listening. Works in bulk, with optional storage to Apify key-value store.


πŸ“š API Documentation

For complete API reference, endpoint details, and advanced usage examples, visit our official documentation:

Transcript Downloader API Documentation

Get Your API Key β€’ API Pricing


✨ Features

  • πŸ“ Bulk processing of multiple Instagram content URLs
  • 🎬 Supports reels and posts with video content
  • πŸ–ΌοΈ Image detection - identifies image-only posts (no audio)
  • πŸ•’ Polling logic with automatic retries
  • 🧠 Progress tracking and run logs
  • πŸ—‚οΈ Optional Apify file storage to key-value store
  • πŸ”” Webhook support: Receive results via webhook instead of polling
  • πŸ” Secure API token-based authentication

πŸ”§ Input Parameters

ParameterTypeRequiredDefaultDescription
contentUrlsarrayβœ… Yes–List of Instagram post/reel URLs to extract audio from
apiTokenstringβœ… Yes–Bearer token for Transcript Downloader API
downloadToApifybooleanNotrueWhether to download audio files to Apify key-value store
maxWaitTimenumberNo10Max time to wait for audio processing (in minutes, range: 1–15)
pollingIntervalnumberNo30Interval between polling status (in seconds, range: 30–300)
includeWebhookstringNo–Webhook URL to receive results when audio processing completes. Must be publicly reachable and accept POST requests

πŸ“₯ Example Input

{
"contentUrls":[
"https://www.instagram.com/reel/ABC123",
"https://www.instagram.com/p/XYZ789"
],
"apiToken":"your-api-token",
"downloadToApify":true,
"maxWaitTime":10,
"pollingInterval":30
}

πŸ“€ Output Format

Each content URL generates an output record with metadata and processing info:

Successful Response (Audio Extracted)

{
"contentUrl":"https://www.instagram.com/reel/ABC123",
"id":"01KB21QX05P6B4JA7FJHTM7AWE",
"type":"instagram_audio",
"status":"success",
"duration":"00:00:30",
"cost":"0.050",
"audio_url":"https://drive.transcriptdownloader.com/audios/instagram-ABC123xyz.mp3?Expires=...",
"storage_key":"instagram-ABC123.mp3"
}

No Audio Response (Image-Only Post)

{
"contentUrl":"https://www.instagram.com/p/XYZ789",
"status":"no_audio",
"message":"This content does not contain audio.",
"download_id":"01KB21QX05P6B4JA7FJHTM7AWE",
"cost":"0.025"
}

Failed Response

{
"contentUrl":"https://www.instagram.com/p/INVALID",
"status":"failed",
"error":"Invalid Instagram URL. Must be a post (/p/) or reel (/reel/) URL."
}

πŸš€ How to Use

  1. Get your API token from Transcript Downloader
  2. Add one or more Instagram post/reel URLs (must include /p/ or /reel/)
  3. Set downloadToApify to true if you want files saved to storage
  4. Run the actor and access results in the dataset or key-value store

πŸ”— Supported URL Formats

The actor supports Instagram post and reel URLs:

βœ… https://www.instagram.com/p/SHORTCODE
βœ… https://www.instagram.com/reel/SHORTCODE
βœ… http://www.instagram.com/p/SHORTCODE
βœ… https://instagram.com/reel/SHORTCODE(without www)

❌ Not supported:

❌ Profile URLs(https://www.instagram.com/username/)
❌ Story URLs

❌ Error Handling

This actor includes robust handling for common issues:

Status CodeDescription
400Invalid Instagram URL – must be post or reel
401Invalid API key or insufficient credits
403Invalid API token – check or regenerate key
429Too many requests – reduce polling frequency
500Server error – failed to initiate content fetch
503Transcript Downloader API under maintenance

Special Cases

  • Image-only posts: Detected automatically and marked as no_audio status
  • Private accounts: May return errors if content is not accessible
  • Deleted content: Will fail with appropriate error message

⚠️ Rate Limiting & Performance

API Rate Limits

ScopeLimitWindow
Per User (API Token)90 requests1 minute
Per IP (unauthenticated)90 requests1 minute

When rate limits are exceeded, the API returns 429 Too Many Requests. The actor handles this automatically with built-in retry logic.

Processing Times

ScenarioTypical DurationMaximum WaitRecommended Poll Interval
Audio Extraction10 seconds - 5 minutes15 minutes30 seconds
Image-only posts (detection)~5-10 seconds--

Breakdown by content length:

  • Short reels (< 30 seconds): ~30-90 seconds
  • Medium videos (30s - 2 minutes): ~1-3 minutes
  • Long videos (2-5 minutes): ~2-5 minutes
  • Download to Apify: Additional 5-15 seconds per file when enabled

Retry Behavior

The actor automatically retries on transient errors (429, 500, 503) with exponential backoff (base delay 1s, max delay 60s, up to 5 attempts). It does not retry on client errors (401, 403, 404) since those require user action.

Response Headers

The API returns rate limit headers you can monitor in logs:

HeaderDescription
X-RateLimit-LimitMax requests allowed in window
X-RateLimit-RemainingRequests remaining in current window
Retry-AfterSeconds to wait before retrying (on 429)

πŸ”” Webhook Support

Instead of polling, you can receive results automatically via webhook. Pass a publicly reachable URL in the includeWebhook field, and the API will POST the results directly to your server when audio processing completes.

How It Works

  1. The webhook URL is sent with the initial API request only (not during polling)
  2. One webhook is fired per content item when processing completes or fails
  3. The webhook payload is the exact same JSON the API endpoint would return
  4. Failed deliveries are retried up to 3 times (at 10s, 30s, and 60s intervals)

Webhook Headers

Each delivery includes these custom headers to identify the event:

HeaderDescription
X-Webhook-Endpointinstagram/audio
X-Webhook-Original-StatusHTTP status code of the result (e.g. 200)
X-Webhook-Download-IdThe download record ID

Example with Webhook

{
"contentUrls":[
"https://www.instagram.com/reel/ABC123",
"https://www.instagram.com/p/XYZ789"
],
"apiToken":"your-token",
"includeWebhook":"https://your-domain.com/webhook"
}

Important Notes

  • The URL must be publicly reachable (no localhost or private IPs)
  • Your endpoint must accept POST requests and return a 2xx status
  • Test your webhook URL first using the API test endpoint
  • The webhook is registered once at request time β€” it cannot be added after a job has started

πŸ’‘ Best Practices

  • βœ… Respect rate limits to avoid 429 errors
  • ⏳ Use polling wisely β€” longer intervals for large queues
  • ⏳ Keep pollingInterval at 30 seconds as recommended by the API
  • πŸ” Keep your apiToken secret (never log it)
  • 🧠 Monitor output for incomplete or failed downloads
  • πŸ–ΌοΈ Check for no_audio status on image-only posts
  • πŸ—‚οΈ Store large audio files in Apify only when needed
  • 🎯 Mix posts and reels in the same run

πŸ’° Pricing & Billing

The Transcript Downloader API used by this actor requires a valid API token. API usage is billed separately:

  • Audio extraction: ~$0.05 per reel/video post
  • Image-only detection: ~$0.025 per post (no audio extracted)
  • Cost displayed: Exact cost shown in each response

πŸ“Š Very cost-effective for bulk audio extraction.
View full details and subscription plans on our pricing page


🎯 Use Cases

  • 🎡 Music extraction: Extract audio from Instagram reels
  • πŸ“» Content repurposing: Convert video content to audio format
  • πŸŽ™οΈ Podcast creation: Extract audio for podcast episodes
  • πŸ“± Offline listening: Download audio for offline access
  • πŸ”Š Audio analysis: Extract audio for transcription or analysis
  • 🎬 Video to audio: Batch convert Instagram videos to MP3

πŸ“Š Monitoring & Analytics

Track your usage with the built-in logging:

  • Total processed: Number of URLs processed
  • Successful: Audio files successfully extracted
  • No audio: Image-only posts detected
  • Failed: URLs that encountered errors
  • Success rate: Percentage of successful extractions

Example summary:

Instagram Audio Scraper completed {
totalProcessed:10,
successful:7,
noAudio:2,
failed:1,
successRate:'70.0%'
}

πŸ”„ Integration with Other Actors

This actor works with the Instagram suite:

  1. Profile Scraper β†’ Get profile + recent posts
  2. List Scraper β†’ Get all posts/reels from profile
  3. Audio Scraper (this actor) β†’ Extract audio from reels/posts

Complete Workflow:

Profile β†’ List β†’ Filter Videos β†’ Extract Audio

πŸ™‹ Support

Need help? Visit Transcript Downloader Support. We respond within 24 business hours.

For technical issues with this actor, check the run logs for detailed error messages.


πŸ“„ License

This actor is provided under the ISC License.


Made with ❀️ by Transcript Downloader | Website | API Dashboard

You might also like

Instagram Audio Scraper - Reels by Audio, Song & Sound

khadinakbar/instagram-audio-scraper

Scrape public Instagram audio usage from audio IDs, audio URLs, Reel URLs, profile Reels, and Reel search queries. Returns audio metadata, Reel URLs, engagement metrics, media links, author metadata, and provider diagnostics. No cookies required.

Instagram Reels Audio Scraper

kinaesthetic_millionaire/instagram-reels-audio-scraper

Instagram Reel Audio Scraper is a powerful and easy-to-use tool that allows you to extract detailed data from Instagram Reels that use a given audio track.

145

5.0

Instagram Reels Audio Downloader

codenest/instagram-reels-audio-downloader

Extracts high-fidelity audio from Instagram Reels. Outputs a direct URL for download, comprehensive technical metadata (codec, bitrate, sample rate), and source information, delivering a pure audio stream for professional use.🎡 Instagram Reels Audio Downloader.

Instagram Post Video & Reels Video - Audio Downloader Multiple

alpha-scraper/instagram-post-video-reels-video---audio-downloader-multiple

Extract audio URLs from Instagram Reels and Post Videos instantly. Supports multiple URLs, delivers high-quality downloadable audio links with rich metadata including likes, comments, duration, and thumbnails. Fast, reliable, and perfect for automation, scraping, and bulk media extraction.

7

Instagram Audio Downloader

alpha-scraper/instagram-audio-downloader

Instagram Audio Downloader 🎡 Extract playable audio URLs from Instagram videos and reels. Supports multiple links, returns clean metadata, and delivers direct audio accessβ€”ideal for automation, research, and content workflows.

33

Instagram Reels Audio Downloader

alpha-scraper/instagram-reels-audio-downloader

Extract high-quality audio URLs from Instagram Reels instantly. Supports multiple links, returns structured metadata including audio formats, duration, likes, comments, and upload date. Fast, reliable, and perfect for automation and data collection.

7

Instagram Reels Audio Scraper & Downloader

codenest/instagram-reels-audio-scraper-downloader

πŸš€Extract crystal-clear M4A audio files with detailed metadata from Instagram Reels! Perfect for musicians 🎡, marketers πŸ“Š, and researchers πŸ”¬. Features secure Apify KV storage for easy access and batch processing for multiple URLs. 🎡Instagram Reels Audio Scraper & Downloader🎡.

Instagram Profile Reels Scraper Β· No Login

data-slayer/instagram-profile-reels

Scrape all Reels from any Instagram profile by username β€” no login. Get play counts, likes, comments, shares, captions, hashtags, audio metadata, video URLs, and timestamps. 125+ fields per Reel. Competitor content analysis and influencer research. JSON/CSV/Excel.

Instagram Reels Scraper

simpleapi/instagram-reels-scraper

Instagram Reels Scraper extracts Reels from any public Instagram profile or feed, capturing captions, audio, hashtags, media URLs, views, likes, comments, and timestamps. Ideal for trend analysis, influencer research, content strategy, and automating structured Instagram Reels data collection.

13

1.0

Face Swap

akash9078/ai-face-swap

Swap faces between images using advanced AI deep learning for natural, high-resolution results. Ideal for dev teams, automated workflows, creators, influencers, and marketers.

πŸ‘ User avatar

Akash Kumar Naik

80

5.0