Instagram Reels Audio
Find every Reel that uses a specific audio track. Useful for trend monitoring and creator discovery.
Use the JS token
Instagram scrapers work best with your JavaScript token.
API usage
Add &scraper=instagram-reels-audio to a Crawling API request. URL-encode the target URL in the url parameter.
curl 'https://api.crawlbase.com/?token=YOUR_TOKEN' \
--data-urlencode 'url=https://www.instagram.com/reels/audio/430642407673774' \
--data-urlencode 'scraper=instagram-reels-audio' -Gfrom crawlbase import CrawlingAPI
api = CrawlingAPI({'token': 'YOUR_TOKEN'})
res = api.get(
'https://www.instagram.com/reels/audio/430642407673774',
{'scraper': 'instagram-reels-audio'}
)
import json
data = json.loads(res['body'])const { CrawlingAPI } = require('crawlbase');
const api = new CrawlingAPI({ token: 'YOUR_TOKEN' });
const res = await api.get(
'https://www.instagram.com/reels/audio/430642407673774',
{ scraper: 'instagram-reels-audio' }
);
const data = JSON.parse(res.body);require 'crawlbase'
api = Crawlbase::API.new(token: 'YOUR_TOKEN')
res = api.get('https://www.instagram.com/reels/audio/430642407673774', scraper: 'instagram-reels-audio')
data = JSON.parse(res.body)Example input URL
The URL passed in the url parameter (URL-decoded for readability):
https://www.instagram.com/reels/audio/430642407673774Response shape
JSON response body. Field types may be null when the source page omits the value.
Audio identifier from the URL.
Audio track title.
Audio artist or original creator.
Reels using this audio with shape similar to
instagram-reel.Reel shortcode.
Reel author username.
Reel view count.
Thumbnail URL.
Sample response
{
"audio_id": "430642407673774",
"audio_title": "Original audio",
"audio_artist": "craft_studio",
"reels_using_audio": [
{
"id": "DHq4bFpID1_",
"owner_username": "craft_studio",
"view_count": 142000,
"thumbnail_url": "https://scontent.cdninstagram.com/...jpg"
}
]
}
