Skip to content

Instantly share code, notes, and snippets.

@avivace
Last active March 11, 2025 13:56
Show Gist options
  • Save avivace/4eb547067e364d416c074b68502e0136 to your computer and use it in GitHub Desktop.
Save avivace/4eb547067e364d416c074b68502e0136 to your computer and use it in GitHub Desktop.
Restore deleted Telegram messages from groups

Restore deleted Telegram messages, medias and files from groups

There's not telegram API method for this, we need to call MTProto methods to retrieve messages from the "Recent Actions" (Admin Log) since deleted messages (and medias) gets moved there for 48 hours before the permanent deletion.

from telethon import TelegramClient, events, sync
from telethon.tl.types import InputChannel, PeerChannel
from telethon.tl.types import Channel
import time

# Get your own api_id and
# api_hash from https://my.telegram.org, under API Development.
#  or from https://tjhorner.dev/webogram/#/login
api_id = API_ID
api_hash = API_HASH

client = TelegramClient('session_name', api_id, api_hash)
client.start()

group = client.get_entity(PeerChannel(GROUP_CHAT_ID))

#messages = client.get_admin_log(group)

file1 = open("dump.json","w") 
c = 0
m = 0
for event in client.iter_admin_log(group):
    if event.deleted_message:
        print("Dumping message",c, "(", event.old.id, event.old.date,")")
        file1.write(event.old.to_json() + ",") 
        c+=1
        if event.old.media:
            m+=1
            #print(event.old.media.to_dict()['Document']['id'])
            client.download_media(event.old.media, str(event.old.id))
            print(" Dumped media", m)
        time.sleep(0.1)

FAQ

How do I run this?

Please check https://docs.python.org/3/faq/

@f-alex
Copy link

f-alex commented Aug 2, 2024

api_id = ''
api_hash = ''
chat_id = ''
I hope these are not real account )

@Kebble002
Copy link

Thank you very much, regardless! That helped a lot

You're welcome)

I mangaged to run the code successfully, but nothing is happening after i logged in. what could be wrong?

@marinosGR
Copy link

THANKS
@avivace for the backup script
@dJani97 for providing a restore script
@Silenseo for his edited restore script
@NabiKAZ for his tip for faster speeds
@MohammadJouza for providing a guide

Because I had problems with the GROUP_CHAT_ID I made a quick fork with info for how to find it, to auto add -100 if missing and to work even if someone gave the GROUP_CHAT_ID as text.

@sw1tch3roo
Copy link

Thank you for your Gist, you saved my life too.

Based on your decision, I decided to prepare an improved version of the script and wrote detailed instructions on how to use the script, but so far only in Russian...

P.S. I will try to translate it into English soon.

@robertwebb122
Copy link

Do you need to increase your credit score?
Do you intend to upgrade your school grade?
Do you want to hack your cheating spouse's email, WhatsApp, Facebook, Instagram, or any other social network?
Do you need any information concerning any databases?
Do you need to retrieve deleted files?
Do you need to clear your criminal records with the DMV?
Do you want to remove any site or link from any blog?
You should contact this hacker; he is reliable and good at hacking.
Contact: cybergoldenhacker at gmail dot com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment