Retrieve container
GET/containers/{container_id}
Retrieve Container
Path Parameters
container_id: string
Returns
id: string
Unique identifier for the container.
created_at: number
Unix timestamp (in seconds) when the container was created.
name: string
Name of the container.
object: string
The type of this object.
status: string
Status of the container (e.g., active, deleted).
last_active_at: optional number
Unix timestamp (in seconds) when the container was last active.
Retrieve container
curl https://api.openai.com/v1/containers/$CONTAINER_ID \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"id": "id",
"created_at": 0,
"name": "name",
"object": "object",
"status": "status",
"expires_after": {
"anchor": "last_active_at",
"minutes": 0
},
"last_active_at": 0,
"memory_limit": "1g"
}Returns Examples
{
"id": "id",
"created_at": 0,
"name": "name",
"object": "object",
"status": "status",
"expires_after": {
"anchor": "last_active_at",
"minutes": 0
},
"last_active_at": 0,
"memory_limit": "1g"
}