curl --location --request GET 'https://api.openai.com/v1/assistants/asst_abc123' \
--header 'Authorization: Bearer $OPENAI_API_KEY' \
--header 'OpenAI-Beta: assistants=v1' \
--header 'Content-Type: application/json'
{
"id": "string",
"object": "string",
"created_at": 0,
"name": "string",
"description": null,
"model": "string",
"instructions": "string",
"tools": [
{
"type": "string"
}
],
"file_ids": [
"string"
],
"metadata": {}
}