Fluidstack website screenshot

Fluidstack

Fluidstack is an AI cloud platform that builds and operates high-performance, single-tenant GPU clusters for top AI labs, governments, and enterprises. Founded in 2017 out of Oxford University and now headquartered in New York City, Fluidstack manages more than 100,000 GPUs across its global network and has been selected by customers including Anthropic, Meta, Mistral, Poolside, Black Forest Labs, and Character.AI. Its core offering combines on-demand bare-metal GPU clusters (including thousands of NVIDIA H200s with InfiniBand) with managed Kubernetes and managed Slurm orchestration layers, Lighthouse observability, and human-on-call site reliability. Fluidstack exposes a global REST Management API (api.atlas.fluidstack.io/api/v1alpha1) and the fluidctl CLI for managing organizations, projects, regions, clusters, instances, members, invitations, and SSH keys. The platform is GDPR, SOC 2 Type 2, and ISO 27001 certified, and was awarded ClusterMAX Gold by SemiAnalysis.

1 APIs 14 Features
AIArtificial IntelligenceGPUCloudComputeInfrastructureMachine LearningFoundation ModelsTrainingInferenceKubernetesSlurmBare MetalNVIDIAInfiniBandData Centers

APIs

Fluidstack Management API

The global Fluidstack Management API (v1alpha1) for managing GPU cloud resources. Exposes regions, clusters, organizations, members, invitations, instances, and user SSH keys. U...

Collections

Features

On-demand single-tenant GPU clusters with isolated hardware, network, and storage
Immediate access to thousands of NVIDIA H200 GPUs with InfiniBand interconnect
Managed Kubernetes — bare-metal container orchestration with NVIDIA operators and health checks
Managed Slurm — bare-metal batch orchestration with user management and topology-aware scheduling
Lighthouse observability and monitoring for GPU clusters
Global Management API (v1alpha1) at api.atlas.fluidstack.io for clusters, instances, regions, members, invitations, and SSH keys
fluidctl command-line tool with auth, capacity, instance-types, instances, kubernetes, projects, slurm commands
Bearer token authentication with optional X-PROJECT-ID header scoping
Custom data centers — selected by Anthropic to deliver capacity in New York and Texas
Demonstrated rapid deployment — 2,500+ GPUs delivered to Poolside in 48 hours
100,000+ GPUs under management across the network
15-minute response SLA with direct engineer maintenance and audit logs
GDPR, SOC 2 Type 2, and ISO 27001 certified
ClusterMAX Gold awarded by SemiAnalysis (Nov 2025)

Resources

🔗
Website
Website
🌐
Portal
Portal
🔗
Documentation
Documentation
🚀
GettingStarted
GettingStarted
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
📦
SDKs
SDKs
🔗
About
About
📰
Blog
Blog
🔗
Careers
Careers
🔗
Contact
Contact
🔗
LinkedIn
LinkedIn
🔗
Twitter
Twitter

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Management API
  version: v1alpha1
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Regions
    type: folder
  items:
  - info:
      name: Get a list of regions
      type: http
    http:
      method: GET
      url: https://api.atlas.fluidstack.io/api/v1alpha1/regions
    docs: Returns a list of regions with their details.
- info:
    name: Clusters
    type: folder
  items:
  - info:
      name: Get a list of clusters
      type: http
    http:
      method: GET
      url: https://api.atlas.fluidstack.io/api/v1alpha1/clusters
    docs: Returns a list of clusters belonging to the user's organization.
- info:
    name: Organizations
    type: folder
  items:
  - info:
      name: Get a list of organizations
      type: http
    http:
      method: GET
      url: https://api.atlas.fluidstack.io/api/v1alpha1/organizations
    docs: Returns a list of organizations with their details.
- info:
    name: Members
    type: folder
  items:
  - info:
      name: Get a list of members
      type: http
    http:
      method: GET
      url: https://api.atlas.fluidstack.io/api/v1alpha1/members
    docs: Returns a list of members in the current organization.
  - info:
      name: Update a member
      type: http
    http:
      method: PATCH
      url: https://api.atlas.fluidstack.io/api/v1alpha1/members/:id
      params:
      - name: id
        value: ''
        type: path
        description: The unique identifier of the member to update.
      body:
        type: json
        data: '{}'
    docs: Updates the a member in the current organization.
  - info:
      name: Delete a member
      type: http
    http:
      method: DELETE
      url: https://api.atlas.fluidstack.io/api/v1alpha1/members/:id
      params:
      - name: id
        value: ''
        type: path
        description: The unique identifier of the member to delete.
    docs: Deletes a member from the current organization by their unique identifier.
- info:
    name: Invitations
    type: folder
  items:
  - info:
      name: Get invitations for an organization
      type: http
    http:
      method: GET
      url: https://api.atlas.fluidstack.io/api/v1alpha1/invitations
    docs: Retrieves a list of invitations for the current organization.
  - info:
      name: Invite a user to an organization
      type: http
    http:
      method: POST
      url: https://api.atlas.fluidstack.io/api/v1alpha1/invitations
      body:
        type: json
        data: '{}'
    docs: Sends an invitation to a user to join the current organization.
  - info:
      name: Delete an invitation
      type: http
    http:
      method: DELETE
      url: https://api.atlas.fluidstack.io/api/v1alpha1/invitations/:id
      params:
      - name: id
        value: ''
        type: path
        description: The unique identifier of the invitation to delete.
    docs: Deletes an invitation by its unique identifier.
- info:
    name: Instances
    type: folder
  items:
  - info:
      name: List all instances
      type: http
    http:
      method: GET
      url: https://api.atlas.fluidstack.io/api/v1alpha1/instances
      headers:
      - name: X-PROJECT-ID
        value: ''
    docs: Returns a list of all instances belonging to the user's organization. Optionally filter by project.
  - info:
      name: Get an instance
      type: http
    http:
      method: GET
      url: https://api.atlas.fluidstack.io/api/v1alpha1/instances/:id
      params:
      - name: id
        value: ''
        type: path
        description: Unique identifier of the instance
    docs: Returns details of a specific instance.
- info:
    name: User
    type: folder
  items:
  - info:
      name: List public SSH keys registered for the authenticated user.
      type: http
    http:
      method: GET
      url: https://api.atlas.fluidstack.io/api/v1alpha1/user/keys
    docs: List public SSH keys registered for the authenticated user.
  - info:
      name: Register a public SSH key for the authenticated user.
      type: http
    http:
      method: POST
      url: https://api.atlas.fluidstack.io/api/v1alpha1/user/keys
      body:
        type: json
        data: '{}'
    docs: Register a public SSH key for the authenticated user.
  - info:
      name: Deregister an SSH key for the authorized user.
      type: http
    http:
      method: DELETE
      url: https://api.atlas.fluidstack.io/api/v1alpha1/user/keys/:name
      params:
      - name: name
        value: ''
        type: path
        description: Name of the key
    docs: Deregister an SSH key for the authorized user.
bundled: true