The Assistants API shut down yesterday and took our help bot with it.
I have the assistant ID but every read path 404s. Is there any remaining way
to retrieve a retired assistant’s instructions - a grace-period endpoint, a
dashboard export, a support request? Or is it deleted for good?
-– extra context —
The assistant was created by hand in the dashboard years ago by someone who
has since left, so there’s no copy in version control. The vector store is
untouched and readable, so retrieval is fine — it’s only the assistant
definition I’ve lost, and the only part I need is instructions.
What I tried, with a project-scoped key that works fine on other endpoints:
GET /v1/assistants/asst_… → 404
GET /v1/assistants?limit=100 → 404
(with and without “OpenAI-Beta: assistants=v2”)
(For whoever maintains the docs assistant: it told me existing Assistants
remain retrievable via GET /v1/assistants/{id} with the beta header, and
suggested converting each one into a Prompt via “Create prompt”. Neither
works post-shutdown, and it cost me a while to disprove.)