Last updated 3 months ago
This endpoint retrieves information about all hardware types supported by cortecs.ai.
/hardware-types/
curl -L \ --url 'https://cortecs.ai/api/v1/hardware-types/'
{ "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.
/hardware-types/{hardware_type_id}
The unique identifier of the hardware type.
NVIDIA_L40S_1
curl -L \ --url 'https://cortecs.ai/api/v1/hardware-types/{hardware_type_id}'
{ "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.
/hardware-types/available
curl -L \ --url 'https://cortecs.ai/api/v1/hardware-types/available'