Skip to content

Instantly share code, notes, and snippets.

// capcut downloader
const fetch = require("node-fetch")
async function capcutdl(url) {
const requestUrl = 'https://3bic.com/api/download';
const headers = {
'accept': 'application/json, text/plain, */*',
'content-type': 'application/json',
'user-agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Mobile Safari/537.36'
};