Manage GPUs
List GPUs
Manage GPUs
List GPUs
GET
/
gpu
curl --request GET \
--url https://aiapi.scope3.com/gpu \
--header 'Authorization: Bearer <token>'
{
"gpus": [
{
"name": "NVIDIA A100 40GB",
"id": "a100_40gb",
"max_power_w": 700,
"embodied_emissions_kgco2e": 282.1,
"embodied_water_mlh2o": 181.1,
"performance_ratio_to_h200": 1.5,
"ols_coefficient_gpu_count": 11.4,
"ols_intercept": 11.4,
"customer_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
GPU details retrieved successfully
ID of the customer who owns this node (visible to admins only)
ID of the user who created the node (admin or owner only)
curl --request GET \
--url https://aiapi.scope3.com/gpu \
--header 'Authorization: Bearer <token>'
{
"gpus": [
{
"name": "NVIDIA A100 40GB",
"id": "a100_40gb",
"max_power_w": 700,
"embodied_emissions_kgco2e": 282.1,
"embodied_water_mlh2o": 181.1,
"performance_ratio_to_h200": 1.5,
"ols_coefficient_gpu_count": 11.4,
"ols_intercept": 11.4,
"customer_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>"
}
]
}