Last active
February 20, 2026 07:49
-
-
Save xbladev/145df30cf34d45aa7b6344794927dca6 to your computer and use it in GitHub Desktop.
Instragram dl netdna-ssl.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Free Scrape Channel | |
| // https://whatsapp.com/channel/0029Vb6xGdD11ulNhYPtMt3j | |
| const axios = require('axios'); | |
| async function getInstaDetails(instaUrl) { | |
| const baseDomain = 'https://netdna-ssl.com'; | |
| const client = axios.create({ | |
| baseURL: baseDomain, | |
| withCredentials: true, | |
| }); | |
| try { | |
| const firstRes = await client.post('/download', { url: instaUrl }, { | |
| headers: { | |
| 'Content-Type': 'application/json', | |
| 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36', | |
| 'Referer': baseDomain + '/' | |
| } | |
| }); | |
| const cookies = firstRes.headers['set-cookie']; | |
| if (firstRes.data.success && firstRes.data.redirectUrl) { | |
| const key = firstRes.data.redirectUrl.split('k=')[1]; | |
| const finalRes = await client.get('/api/get-success-data', { | |
| params: { k: key }, | |
| headers: { | |
| 'Cookie': cookies ? cookies.join('; ') : '', | |
| 'Accept': 'application/json, text/plain, */*', | |
| 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36', | |
| 'Referer': `${baseDomain}/successful/successful-1image.html?k=${key}`, | |
| 'X-Requested-With': 'XMLHttpRequest' | |
| } | |
| }); | |
| if (finalRes.data && finalRes.data.success) { | |
| const item = finalRes.data.item[0]; | |
| return { | |
| username: item.meta.username, | |
| title: item.meta.title, | |
| dl_link: item.urls[0].url | |
| }; | |
| } else { | |
| console.log("API Error:", finalRes.data.message); | |
| } | |
| } | |
| } catch (error) { | |
| if (error.response) { | |
| console.error(`API Error (${error.response.status}):`, error.response.data); | |
| } else { | |
| console.error("Connection Error:", error.message); | |
| } | |
| } | |
| } | |
| getInstaDetails("https://www.instagram.com/reel/DD6q97IuzxD/") | |
| .then(data => { | |
| if (data) { | |
| console.log(data); | |
| } | |
| }); | |
| // RESULT | |
| { | |
| username: 'brainjotter', | |
| title: 'The hard way\n' + | |
| '\n' + | |
| 'W: @princess_joy.a \n' + | |
| '\n' + | |
| '1xBet and PSG give you prizes for betting! \n' + | |
| '1.Register on 1xBet with my promo code * (you will get 300% bonus on your first deposit)\n' + | |
| '2.Press the “Take part” button on the offer page “Codename PSG”\n' + | |
| '3.Place bets on on matches featuring Paris Saint-Germain\n' + | |
| '4.Earn tickets for prize draws of different levels and win prizes!\n' + | |
| 'Check prizes and register through the link in highlights or 1xbet.ng', | |
| dl_link: 'https://instagram.fsyq2-1.fna.fbcdn.net/o1/v/t16/f2/m86/AQOsQgnV_9kGZ47jDV2DUmdnrflvd4yFBBBnJyEsRwYzGRnZXo_5OTIKVfoc2ZL2TOacr5KX8NbR-FvrpovgasjDKRDNW234UR5Hw40.mp4?stp=dst-mp4&efg=eyJxZV9ncm91cHMiOiJbXCJpZ193ZWJfZGVsaXZlcnlfdnRzX290ZlwiXSIsInZlbmNvZGVfdGFnIjoidnRzX3ZvZF91cmxnZW4uY2xpcHMuYzIuMzYwLmJhc2VsaW5lIn0&_nc_cat=105&vs=984753747032713_2652247636&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8zMjQ4NDZGMjI1Q0U1QThBMzUzNDhGQTZBRDdDNTQ4MF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYR2lnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8yMzM2MzkyMDgzNDIwMjY1Xzg4OTI1MjE0NzgyMTczMjYwNTgubXA0FQICyAESACgAGAAbABUAACb0lNPn5cyFQRUCKAJDMywXQGCZmZmZmZoYEmRhc2hfYmFzZWxpbmVfM192MREAdf4HZeadAQA%3D&ccb=9-4&oh=00_AftaTx937viHGeuql30kgcjzUsqpM3aVztbYgPenafVhzQ&oe=69992F3B&_nc_sid=d885a2&dl=1' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment