Hardware Types
Last updated
Last updated
This endpoint retrieves information about all hardware types supported by cortecs.ai.
GET /api/v1/hardware-types/ HTTP/1.1
Host: cortecs.ai
Accept: */*
{
"hardware_types": [
{
"hardware_type_id": "NVIDIA_L40S_1",
"price_info": {
"price_per_hour": 1.2,
"price_per_minute": 0.02,
"currency": "EUR"
},
"hardware_info": {
"gpu_type": "NVIDIA L40S",
"num_gpus": 1,
"gpu_ram_gb": 48
}
}
]
}
This endpoint retrieves information about a specific hardware type.
The unique identifier of the hardware type.
NVIDIA_L40S_1
GET /api/v1/hardware-types/{hardware_type_id} HTTP/1.1
Host: cortecs.ai
Accept: */*
{
"hardware_type": {
"hardware_type_id": "NVIDIA_L40S_1",
"price_info": {
"price_per_hour": 1.2,
"price_per_minute": 0.02,
"currency": "EUR"
},
"hardware_info": {
"gpu_type": "NVIDIA L40S",
"num_gpus": 1,
"gpu_ram_gb": 48
}
}
}
This endpoint retrieves all available hardware types.
GET /api/v1/hardware-types/available HTTP/1.1
Host: cortecs.ai
Accept: */*
{
"hardware_types": [
{
"hardware_type_id": "NVIDIA_L40S_1",
"price_info": {
"price_per_hour": 1.2,
"price_per_minute": 0.02,
"currency": "EUR"
},
"hardware_info": {
"gpu_type": "NVIDIA L40S",
"num_gpus": 1,
"gpu_ram_gb": 48
}
}
]
}