Configurations

A configuration consists of the specific GPU, CPU, and storage settings for an instance.

Get the list of available configurations

To see available configurations, call the List available configurations endpoint.

Example request:

GET
1curl https://platform.fluidstack.io/list_available_configurations \
2 -H "api-key: <api-key>"

Make sure to replace the <api_key> with your own API key.

The endpoint returns a list of configuration objects, as shown in this example response:

Response
1[
2 {
3 "gpu_type": "RTX_A5000_24GB",
4 "gpu_counts": [
5 1,
6 2,
7 4,
8 8
9 ],
10 "price_per_gpu_hr": "5",
11 "estimated_provisioning_time_minutes": 5,
12 "regions": [
13 "NORWAY"
14 ]
15 },
16 {
17 "gpu_type": "H100_PCIE_80GB",
18 "gpu_counts": [
19 1,
20 8
21 ],
22 "price_per_gpu_hr": "5",
23 "estimated_provisioning_time_minutes": 5,
24 "regions": [
25 "CANADA"
26 ]
27 }
28]

When you create an instance, you must specify a value for gpu_type. The value you specify for gpu_count determines the CPU count, as well as the RAM and NVME storage sizes.

Note
If you do not provide a value for gpu_count when creating an instance, 1 is used as the default.