Retrieve a conversation
$ openai conversations retrieve
GET/conversations/{conversation_id}
Retrieve a conversation
openai conversations retrieve \
--api-key 'My API Key' \
--conversation-id conv_123{
"id": "conv_123",
"object": "conversation",
"created_at": 1741900000,
"metadata": {"topic": "demo"}
}
Returns Examples
{
"id": "conv_123",
"object": "conversation",
"created_at": 1741900000,
"metadata": {"topic": "demo"}
}