π©Έβγ«β°β¨β£πππππ-ππππ
Ir al canal en Telegram
Support channel for Trashcore projects
Mostrar mΓ‘sEl paΓs no estΓ‘ especificadoLa categorΓa no estΓ‘ especificada
559
Suscriptores
+224 horas
+57 dΓas
+2130 dΓas
Archivo de publicaciones
const axios = require('axios');
// βββ tiktok βββββββββββββββββββββββββββββββββββββββββββββββββ
const tiktok = {
name: 'tiktok',
command: ['tiktok', 'tt'],
category: 'Downloader',
desc: 'Download TikTok videos',
run: async ({ trashcore, m, args, xreply, chat }) => {
try {
const url = args[0];
if (!url) {
return xreply('Usage: .tiktok <tiktok url>');
}
await xreply('π₯ Downloading TikTok video...');
const { data } = await axios.get(
https://api.drexapp.space/downloader/tiktok?url=${encodeURIComponent(url)}
);
if (!data.status || !data.result?.result) {
return xreply('β Failed to fetch TikTok video');
}
const res = data.result.result;
await trashcore.sendMessage(chat, {
video: { url: res.play },
caption:
π΅ ${res.title}
π€ Author: ${res.author.nickname}
β± Duration: ${res.duration}s
β€οΈ Likes: ${res.digg_count}
π¬ Comments: ${res.comment_count}
}, { quoted: m });
} catch (err) {
console.error('TIKTOK Error:', err);
xreply('β Error downloading TikTok video');
}
}
};
module.exports = tiktok;
Command tiktok
Note: Tiktok downloader
Powered by Trashcore apihttps://github.com/Tennor-modz/Wa-Base-Bot
You can check it out π
Wa Base bot version 5
* Moved from case to plugins system
* Sqlite database implementation
* The antidelete can now retrieve deleted audios and channel posts
* Add your wish commands or check shared plugins from our telegram channel π«₯
> Made on 2026 by idiots
https://chat.whatsapp.com/K7pxCVFfbQp1GlfyacoQMM
ππnew group join again
Bots back online
Connect your bots from this servers
Server one:
http://t.me/Trashapibot
Server two:http://t.me/Trashcoreultras_bot
Server three: http://t.me/trashcoremds_bot
Don't forget to use the stable version of MD-Baileys
Some updates were applied yesterday π and it's now improved with version 4.1.6 as the most stable version
Check readme from the official repo to view the fixes applied
https://github.com/Tennor-modz/MD-Baileys
Installation use
"@trashcore/baileys": "latest",
Or
"@trashcore/baileys": "^4.1.6",
Or
"baileys": "npm:@trashcore/baileys@latest",
Or
"whiskeysockets/baileys": "npm:@trashcore/baileys@latest",
> Published 8th May 2025
const axios = require('axios');
// βββ pindl ββββββββββββββββββββββββββββββββββββββββββββββββββ
const pindl = {
name: 'pindl',
command: ['pindl', 'pinterest', 'pintdl'],
category: 'Downloader',
desc: 'Download Pinterest videos & images',
run: async ({ trashcore, m, args, xreply, chat }) => {
try {
const url = args[0];
if (!url) {
return xreply(
'Usage: .pindl <pinterest url>\n\n' +
'Example: .pindl https://pin.it/xxx'
);
}
if (!url.includes('pinterest.com') && !url.includes('pin.it')) {
return xreply('β Please provide a valid Pinterest URL');
}
await xreply('β³ Fetching Pinterest media...');
const { data } = await axios.get(
`https://api.drexapp.space/downloader/pinterest?url=${encodeURIComponent(url)}`
);
if (!data.status || !data.result) {
return xreply('β Could not fetch media. Make sure the link is a valid Pinterest post.');
}
const res = data.result;
const caption =
`π *Pinterest ${res.type === 'video' ? 'Video' : 'Image'}*\n\n` +
`π Title: ${res.title || 'N/A'}\n` +
`π€ Author: ${res.author || 'N/A'} (@${res.username || 'N/A'})\n` +
`π
Uploaded: ${res.upload_date ? new Date(res.upload_date).toDateString() : 'N/A'}\n\n` +
`> Downloaded by TrashCore Ultra`;
if (res.type === 'video') {
await trashcore.sendMessage(chat, {
video: { url: res.media_url },
caption,
mimetype: 'video/mp4'
}, { quoted: m });
} else {
await trashcore.sendMessage(chat, {
image: { url: res.media_url },
caption
}, { quoted: m });
}
} catch (err) {
console.error('PINDL Error:', err);
xreply('β Error downloading Pinterest media');
}
}
};
module.exports = pindl;
Pindl command
Note: Pinterest downloader
Powered by Trashcore api systemconst axios = require('axios');
// βββ fbdl ββββββββββββββββββββββββββββββββββββββββββββββββββ
const fbdl = {
name: 'fbdl',
command: ['fbdl', 'fb', 'facebookdl'],
category: 'Downloader',
desc: 'Download Facebook videos',
run: async ({ trashcore, m, args, xreply, chat }) => {
try {
const url = args[0];
const quality = args[1]?.toLowerCase() || 'hd'; // hd | sd
if (!url) {
return xreply(
'Usage: .fbdl <facebook url> [quality]\n\n' +
'Quality options:\n' +
'β’ *hd* - 720p High quality (default)\n' +
'β’ *sd* - 360p Standard quality\n\n' +
'Example: .fbdl https://facebook.com/share/r/xxx hd'
);
}
if (!url.includes('facebook.com') && !url.includes('fb.watch')) {
return xreply('β Please provide a valid Facebook URL');
}
await xreply('β³ Fetching Facebook video...');
const { data } = await axios.get(
`https://api.drexapp.space/downloader/facebookv2?url=${encodeURIComponent(url)}`
);
if (!data.status || !data.result) {
return xreply('β Could not fetch video. Make sure the link is a public Facebook video.');
}
const res = data.result;
// qualities array: index 0 = HD (720p), index 1 = SD (360p)
const hdLink = res.qualities?.[0]?.link || res.media_url;
const sdLink = res.qualities?.[1]?.link || res.media_url;
const videoUrl = quality === 'sd' ? sdLink : hdLink;
const qualityLabel = quality === 'sd'
? (res.qualities?.[1]?.quality || '360p (SD)')
: (res.qualities?.[0]?.quality || '720p (HD)');
await trashcore.sendMessage(chat, {
video: { url: videoUrl },
caption:
`π *Facebook Video*\n\n` +
`π Quality: ${qualityLabel}\n\n` +
`> Downloaded by TrashCore Ultra`,
mimetype: 'video/mp4'
}, { quoted: m });
} catch (err) {
console.error('FBDL Error:', err);
xreply('β Error downloading Facebook video');
}
}
};
module.exports = fbdl;
Facebook command
Note: Facebook video downloader
Powered by Trashcore api systemconst axios = require('axios');
// βββ twitter ββββββββββββββββββββββββββββββββββββββββββββββββββ
const twitter = {
name: 'twitter',
command: ['twitter', 'tw', 'twitterdl'],
category: 'Downloader',
desc: 'Download Twitter/X videos',
run: async ({ trashcore, m, args, xreply, chat }) => {
try {
const url = args[0];
if (!url) {
return xreply('Usage: .twitter <tweet url>\nExample: .twitter https://x.com/i/status/123456789');
}
if (!url.includes('x.com') && !url.includes('twitter.com')) {
return xreply('β Please provide a valid Twitter/X URL');
}
await xreply('β³ Fetching tweet video...');
const { data } = await axios.get(
https://api.drexapp.space/downloader/twitter?url=${encodeURIComponent(url)}
);
if (!data.status || !data.result) {
return xreply('β Could not fetch video. Make sure the tweet contains a video.');
}
const res = data.result;
// Send caption with quality options info
await xreply(
π¦ *Twitter Video Found*\n\n +
π ${res.desc || 'No description'}\n\n +
β³ Sending HD video...
);
// Try HD first, fall back to SD
const videoUrl = res.HD || res.SD;
await trashcore.sendMessage(chat, {
video: { url: videoUrl },
caption:
π¦ *Twitter Video*\n\n +
π ${res.desc || ''}\n\n +
> Downloaded by TrashCore Ultra,
mimetype: 'video/mp4'
}, { quoted: m });
} catch (err) {
console.error('TWITTER Error:', err);
xreply('β Error downloading Twitter video');
}
}
};
module.exports = twitter;
Command twitter
Note: Twitter downloader ( videos)
Powered by Trashcore api systemconst axios = require('axios');
// βββ lirik ββββββββββββββββββββββββββββββββββββββββββββββββββ
const lirik = {
name: 'lirik',
command: ['lirik', 'lyrics'],
category: 'Search',
desc: 'Search song lyrics',
run: async ({ trashcore, m, args, xreply, chat }) => {
try {
const query = args.join(' ');
if (!query) {
return xreply('Usage: .lirik <song name>');
}
await xreply('π΅ Searching lyrics...');
const { data } = await axios.get(
https://api.drexapp.space/search/lyrics?q=${encodeURIComponent(query)}
);
if (!data.status || !data.result) {
return xreply('β Lyrics not found');
}
const res = data.result;
const lyrics =
res.lyrics.length > 3500
? res.lyrics.slice(0, 3500) + '...'
: res.lyrics;
await trashcore.sendMessage(chat, {
text:
π΅ *Lyrics Found*
π Title: ${res.title}
π€ Artist: ${res.artist}
π½ Album: ${res.album}
π Lyrics:
${lyrics}
}, { quoted: m });
} catch (err) {
console.error('LIRIK Error:', err);
xreply('β Error fetching lyrics');
}
}
};
module.exports = lirik;
Command lyrics
Note: YouTube lyrics search
Powered by Trashcore api systemhttps://api.drexapp.space
[Note] :Trashcore mini api hub is available now
Check β
π Trashcore mini app hub,, just a start
as you all know anime md is now a global project
not everyone got telegram so i decided to add web pairing, instead of loading sessions in local storage, sessions will be loaded from anime db , thats a private database created to store jsons, base 64 strings and images
i noticed that vampire killer got 700 users that already have key so ill soon create vampire killer v10 script and give it free
those with no telegram account will soon enjoy anime md like others
*note*
there is no difference between pairing in web and pairing in telegram just in web got advanced features
Bots back online
All session deleted, reconnect
> Server one: π
http://t.me/Trashapibot
> Server two: π
http://t.me/Trashcoreultras_bot
> Server three: π
http://t.me/trashcoremds_bot
I swear developers should just get used to telegram π
YouTube downloaders fixed
* play
* playdoc
* video
* videodoc
* ytmp3
* ytmp4
> Server one: π
http://t.me/Trashapibot
> Server two: π
http://t.me/Trashcoreultras_bot
> Server three: π
http://t.me/trashcoremds_bot
