Hello is it possible by any means to retrieve the dates of the creation of a specific chat thank you in advance, I would need a quick answer
I tried many times. In the chat, I think it is not possible and GPT-3 doesn’t track the conversation timing
You can go into your browser’s developer console. Select the network tab, focus on XHR and refresh the page.
You’ll see a request to a conversations endpoint and inside will have an object containing all your titles, their respective ID, and creation date as such:
{“items”:[{“id”:“XXXcd9-80cXXXXXXXbecXXX”,“title”:“Example title”,“create_time”:“2023-02XXXX7:27:48.XXX”}
I got it. Thanks. I’ve been looking for some time.
Below is a step-by-step guide for noobies like myself:
- Focused in ChatGPT tab: browser Settings >> Developer tools;
- Select | Network | tab in top bar;
- Select | Fetch/XHR | tab in the Filter bar (usually the third bar from the top);
- Reload the ChatGPT tab in the browser;
- In the DevTools window, [ Name ] box, select “conversations?offset…”;
- At the box on the right, select | Response | tab;
- In the first line, we can see:
"{“items”:[{“id”: “hex-id-of-the-conversation#1”, “title”: “Conversation#1_Title”, “create_time”: “yyyy-mm-ddThh:mm:ss.123456”}, …,
{“id”: “hex-id-of-the-conversation#N”, “title”: “Conversation#N_Title”, “create_time”: “yyyy-mm-ddThh:mm:ss.123456”}],
“total”: N, “limit”: NN, “offset”:n}
Note: for the sake of readability, the spaces, and line feeds are mine.