Docs
Log in
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' -G
from 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/430642407673774

Response shape

JSON response body. Field types may be null when the source page omits the value.

audio_id
string
Audio identifier from the URL.
audio_title
string
Audio track title.
audio_artist
string
Audio artist or original creator.
reels_using_audio
array
Reels using this audio with shape similar to instagram-reel.
reels_using_audio[].id
string
Reel shortcode.
reels_using_audio[].owner_username
string
Reel author username.
reels_using_audio[].view_count
integer
Reel view count.
reels_using_audio[].thumbnail_url
string
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"
    }
  ]
}