cURL
curl --request GET \ --url https://api.example.com/v1/containers/{container_id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "name": "<string>", "state": "creating", "start_ts": 123, "state_ts": 123, "stop_ts": 123, "ip": "<string>", "gpu_config": "<string>", "price_per_hour": 123, "container_image": "<string>", "fail_reason": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
creating
starting
running
shutting_down
failed
deleted