Overview

At FluidStack, we use the term ‘plan’ to designate a specific server configuration. A different plan is available for each different server configuration created. For example, if you create an instance with 2xA100 80GB and 32vCPUs, it will have a specific plan assigned to this instance, which will be different from the plan corresponding to a 1xA100 80GB with 32vCPUs.

There are three types of plans, namely: committed, preconfigured and custom. Both committed and preconfigured plans comes with a fixed configuration while custom plans allows resource allocation to be customised. Committed plans can only be ordered on a subscription basis.

Get Plans

This REST API endpoint returns a list of available plans:

GET <https://api.fluidstack.io/v1/plans>

There is no authentication required, so a simple GET request is sufficient to reach the information you need.

To filter the results, use the following parameters:

parameters

Examples

curl '<https://api.fluidstack.io/v1/plans?type=committed&gpu_type=RTX_A6000_48GB>'
curl '<https://api.fluidstack.io/v1/plans?type=custom&gpu_type=RTX_A6000_48GB>'

Example Response