#How to recover your chats
1 messages · Page 1 of 1 (latest)
If you want to recovery your history, follow this simple tutorial:
Go to ChatGPT, press Ctrl + Shift + C and go to network tab
Refresh the page and right click on the following message
You will see something like this:
Filter to Fetch/XHR and right click "models", then Copy -> Copy as Fetch
Go to console tab and paste it
modify the first line to
fetch("https://chat.openai.com/backend-api/conversations", {
Delete the last ";" and paste this at the end.
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
And you will have something like this:
These are your last 50 conversations!
Go to the URL and paste there any ID of the conversation:
For example:
https://chat.openai.com/chat/8eb0bad9-a267-4e64-9f78-f286b75a203c
And your chat will be restored
How to recover your chats
does this do anything bad to our computer or?
No, the API you are calling is the one used by Chat GPT, and all traffic is between you and OpenAI
You can verify this by copying and pasting what is written in the console and asking ChatGPT if you are sending a request to someone other than OpenAI
Basically, what you are doing is calling the conversation history, the only difference is that the page hid this option due to a bug or something in particular.
where exactly do i paste this?
no, the other one
it doesn't work
Ahhh, you must paste it at the end, after the last ")"
it looks like this now
for example:
fetch("https://chat.openai.com/backend-api/conversations", {
"headers": {
"accept": "*/*",
"accept-language": "es-ES,es;q=0.9",
"authorization": "Bearer ",
"content-type": "application/json",
"sec-ch-ua": "\"Opera GX\";v=\"95\", \"Chromium\";v=\"109\", \"Not;A=Brand\";v=\"24\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"Windows\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin"
},
"referrer": "https://chat.openai.com/chat",
"referrerPolicy": "same-origin",
"body": null,
"method": "GET",
"mode": "cors",
"credentials": "include"
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
Delete that ";"
@azure salmon Now it works for you?
so... now what?
Open "items" there are all the IDs of your conversations.
i have nothing in items
Your conversations are not being saved, do you have the free or paid version of ChatGPT?
Perhaps only Plus conversations are being saved
i generated a new chat but it's the same
i have the free version is that the cause?
maybe, it seems that OpenAI cleared the free account history
Or maybe you just don't have them available
i got my chat back
i think it is because of this
https://www.reddit.com/r/ChatGPT/comments/11l2hox/chatgpt_just_thrown_me_into_other_peoples_account/?sort=new
Yep, I was looking at the same post
Well, if something similar happens again, try that and maybe it will help 😄
excuse me how do you get that extra bar that contains "Use large request rows" "Show overview" "Group by frame" and "Capture screenshots" options??
I pasted this in the console (edge), which restored the sidebar entries. When going to each of the sidebars my latest conversations are there. However my older history containing any sort of code is unrecoverable.