DOWNLOADER VIDEO/AUDIO NON WATREMARK DI BERBAGAI MEDIA
import requests
url = 'URL_SMULE'
headers = {
'x-api-key': 'APIKEY_KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
try:
response = requests.post(host, headers=headers, json=json_data, timeout=15)
response.raise_for_status() # auto raise error kalau bukan 200
resp = response.json()
title = resp.get("title")
deskripsi = resp.get("description")
thumbnail = resp.get("thumbnail")
urlVideo = resp.get("video")
urlAudio = resp.get("audio")
print("✅ Judul:", title)
print("📄 Deskripsi:", deskripsi)
print("🖼️ Thumbnail:", thumbnail)
print("🎥 Video:", urlVideo)
print("🎵 Audio:", urlAudio)
except requests.exceptions.RequestException as e:
print("❌ Request Error:", e)
except Exception as e:
print("❌ Parsing Error:", e)
url = "url youtube"
host = 'https://arcibots.online/api/youtube'
headers = {"x-api-key": "APIKEY KAMU"}
try:
resp = requests.post(host, json={"url": url}, headers=headers, timeout=20)
resp.raise_for_status()
data = resp.json()
title = data.get("title", "")
author = data.get("author", "")
thumbnail = data.get("thumbnail", "")
duration = str(data.get("duration", ""))
medias = data.get("medias", [])
media = medias[0] if medias else {}
ab = (
f"title : {title}\n"
f"author : {author}\n"
f"thumbnail: {thumbnail}\n"
f"durasi : {duration}\n"
f"type : {media.get('type', '')}\n"
f"urlVid : {media.get('url', '')}"
)
print(ab)
except requests.exceptions.RequestException as e:
print("◕[ REQUEST ERROR ]◕", e)
except Exception as e:
print("◕[ EXCEPTION ]◕", e)
url = "url tiktok"
host = 'https://arcibots.online/api/tiktok'
headers = {"x-api-key": "APIKEY KAMU"}
try:
resp = requests.post(host, json={"url": url}, headers=headers, timeout=20)
resp.raise_for_status()
data = resp.json()
title = data.get("title", "")
uid = data.get("unique_id", "")
author = data.get("author", "")
thumbnail = data.get("thumbnail", "")
duration = str(data.get("duration", ""))
medias = data.get("medias", [])
media = medias[0] if medias else {}
ab = (
f"id : {uid}\n"
f"title : {title}\n"
f"author : {author}\n"
f"thumbnail: {thumbnail}\n"
f"durasi : {duration}\n"
f"urlVid : {media.get('url', '')}"
)
print(ab)
except requests.exceptions.RequestException as e:
print("◕[ REQUEST ERROR ]◕", e)
except Exception as e:
print("◕[ EXCEPTION ]◕", e)
url = 'URL SMULE'
headers = {
'x-api-key': 'APIKEY KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
response = requests.post(host, headers=headers, json=json_data)
if response.status_code == 200:
resp = response.json()
title = resp["title"]
deskripsi = resp["description"]
thumbnail = resp["thumbnail"]
urlVideo = resp["video"]
urlAudio = resp["audio"]
else:
print('Cek apikey anda !')
url = "url instagram"
host = 'https://arcibots.online/api/instagram'
headers = {"x-api-key": "APIKEY KAMU"}
try:
resp = requests.post(host, json={"url": url}, headers=headers, timeout=20)
resp.raise_for_status()
data = resp.json()
title = data.get("title", "")
author = data.get("author", "")
short_code = data.get("shortcode", "")
view = str(data.get("view_count", ""))
like = str(data.get("like_count", ""))
thumbnail = data.get("thumbnail", "")
duration = str(data.get("duration", ""))
medias = data.get("medias", [])
media = medias[0] if medias else {}
url_vid = media.get('url', '')
ab = (
f"title : {title}\n"
f"author : {author}\n"
f"short_code: {short_code}\n"
f"view : {view}\n"
f"like : {like}\n"
f"thumbnail : {thumbnail}\n"
f"durasi : {duration}\n"
f"urlVid : {url_vid}"
)
print(ab)
except requests.exceptions.RequestException as e:
print("◕[ REQUEST ERROR ]◕", e)
except Exception as e:
print("◕[ EXCEPTION ]◕", e)
url = "url facebook"
host = 'https://arcibots.online/api/facebook'
headers = {"x-api-key": "APIKEY KAMU"}
try:
resp = requests.post(host, json={"url": url}, headers=headers, timeout=20)
resp.raise_for_status()
data = resp.json()
title = data.get("title", "")
author = data.get("author", "")
thumbnail = data.get("thumbnail", "")
duration = str(data.get("duration", ""))
medias = data.get("medias", [])
media = medias[0] if medias else {}
ab = (
f"title : {title}\n"
f"author : {author}\n"
f"thumbnail: {thumbnail}\n"
f"durasi : {duration}\n"
f"urlVid : {media.get('url', '')}"
)
print(ab)
except requests.exceptions.RequestException as e:
print("◕[ REQUEST ERROR ]◕", e)
except Exception as e:
print("◕[ EXCEPTION ]◕", e)
url = 'URL SMULE'
headers = {
'x-api-key': 'APIKEY KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
response = requests.post(host, headers=headers, json=json_data)
if response.status_code == 200:
resp = response.json()
title = resp["title"]
deskripsi = resp["description"]
thumbnail = resp["thumbnail"]
urlVideo = resp["video"]
urlAudio = resp["audio"]
else:
print('Cek apikey anda !')
url = "url instagram"
host = 'https://arcibots.online/api/instagram'
headers = {"x-api-key": "APIKEY KAMU"}
try:
resp = requests.post(host, json={"url": url}, headers=headers, timeout=20)
resp.raise_for_status()
data = resp.json()
title = data.get("title", "")
author = data.get("author", "")
short_code = data.get("shortcode", "")
view = str(data.get("view_count", ""))
like = str(data.get("like_count", ""))
thumbnail = data.get("thumbnail", "")
duration = str(data.get("duration", ""))
medias = data.get("medias", [])
media = medias[0] if medias else {}
url_vid = media.get('url', '')
ab = (
f"title : {title}\n"
f"author : {author}\n"
f"short_code: {short_code}\n"
f"view : {view}\n"
f"like : {like}\n"
f"thumbnail : {thumbnail}\n"
f"durasi : {duration}\n"
f"urlVid : {url_vid}"
)
print(ab)
except requests.exceptions.RequestException as e:
print("◕[ REQUEST ERROR ]◕", e)
except Exception as e:
print("◕[ EXCEPTION ]◕", e)
url = "url pinterest"
host = 'https://arcibots.online/api/pinterest'
headers = {"x-api-key": "APIKEY KAMU"}
try:
resp = requests.post(host, json={"url": url}, headers=headers, timeout=20)
resp.raise_for_status()
data = resp.json()
title = data.get("title", "")
author = data.get("author", "")
duration = str(data.get("duration", ""))
thumbnail = (data.get("thumbnail", "")
medias = data.get("medias", [])
media = medias[0] if medias else {}
thumbnail2 = media.get('thumbnail', '')
type = media.get('type', '')
url_vid = media.get('url', '')
ab = (
f"title : {title}\n"
f"author : {author}\n"
f"durasi : {duration}\n"
f"thumbnail : {thumbnail}\n"
f"type : {type}\n"
f"urlVid : {url_vid}"
)
print(ab)
except requests.exceptions.RequestException as e:
print("◕[ REQUEST ERROR ]◕", e)
except Exception as e:
print("◕[ EXCEPTION ]◕", e)
url = 'URL SMULE'
headers = {
'x-api-key': 'APIKEY KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
response = requests.post(host, headers=headers, json=json_data)
if response.status_code == 200:
resp = response.json()
title = resp["title"]
deskripsi = resp["description"]
thumbnail = resp["thumbnail"]
urlVideo = resp["video"]
urlAudio = resp["audio"]
else:
print('Cek apikey anda !')
url = 'URL SMULE'
headers = {
'x-api-key': 'APIKEY KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
response = requests.post(host, headers=headers, json=json_data)
if response.status_code == 200:
resp = response.json()
title = resp["title"]
deskripsi = resp["description"]
thumbnail = resp["thumbnail"]
urlVideo = resp["video"]
urlAudio = resp["audio"]
else:
print('Cek apikey anda !')
url = 'URL SMULE'
headers = {
'x-api-key': 'APIKEY KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
response = requests.post(host, headers=headers, json=json_data)
if response.status_code == 200:
resp = response.json()
title = resp["title"]
deskripsi = resp["description"]
thumbnail = resp["thumbnail"]
urlVideo = resp["video"]
urlAudio = resp["audio"]
else:
print('Cek apikey anda !')
url = 'URL SMULE'
headers = {
'x-api-key': 'APIKEY KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
response = requests.post(host, headers=headers, json=json_data)
if response.status_code == 200:
resp = response.json()
title = resp["title"]
deskripsi = resp["description"]
thumbnail = resp["thumbnail"]
urlVideo = resp["video"]
urlAudio = resp["audio"]
else:
print('Cek apikey anda !')
url = 'URL SMULE'
headers = {
'x-api-key': 'APIKEY KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
response = requests.post(host, headers=headers, json=json_data)
if response.status_code == 200:
resp = response.json()
title = resp["title"]
deskripsi = resp["description"]
thumbnail = resp["thumbnail"]
urlVideo = resp["video"]
urlAudio = resp["audio"]
else:
print('Cek apikey anda !')
url = 'URL SMULE'
headers = {
'x-api-key': 'APIKEY KAMU',
}
json_data = {
'url': url
}
host = 'https://arcibots.online/api/smule'
response = requests.post(host, headers=headers, json=json_data)
if response.status_code == 200:
resp = response.json()
title = resp["title"]
deskripsi = resp["description"]
thumbnail = resp["thumbnail"]
urlVideo = resp["video"]
urlAudio = resp["audio"]
else:
print('Cek apikey anda !')
Kenyamanan Anda Yang Selalu Kami Utamakan, Di Jamin Anda Puas Saya Lemas