cURL
curl --request GET \ --url https://api.example.com/v1/containers/gpu_availability \ --header 'Authorization: Bearer <token>'
{ "gpus": [ { "gpu_config": "<string>", "usd_per_hour": 123, "available": true, "recommended": false } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
A list of all provided GPUs configurations, including their price and wether they are available
Show child attributes