/v1/assistants routes.
Use /v1/responses when you need a stateful conversation primitive. The API stores response records for 24 hours and exposes retrieval routes:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use Responses and stored response records instead of an Assistants API.
/v1/assistants routes.
Use /v1/responses when you need a stateful conversation primitive. The API stores response records for 24 hours and exposes retrieval routes:
| Method | Path |
|---|---|
POST | /v1/responses |
GET | /v1/responses/{id} |
GET | /v1/responses/{id}/input_items |
POST | /v1/responses/{id}/cancel |
{
"model": "gpt-5.5",
"previous_response_id": "resp_...",
"input": [
{ "role": "user", "content": "Continue from the previous answer." }
]
}