Nutanix Storage Pools API

Manage storage pools which represent groups of physical disks used for storing data across the cluster.

Operations 2

GET /storage_pools Nutanix List storage pools #
GET /storage_pools/{id} Nutanix Get a storage pool #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/nutanix-storage-pools-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

nutanix-storage-pools-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nutanix Prism Element API v2 Storage Pools API
  description: API for managing individual Nutanix clusters through Prism Element, including storage containers, hosts, virtual machines, and cluster operations. The v2 API is cluster-local and available through Prism Element only. It exposes operations specific to local cluster entities such as storage containers, data-at-rest encryption, storage pools, and hosts. Authentication uses HTTP Basic Auth with cluster credentials.
  version: '2.0'
  contact:
    name: Nutanix Developer Support
    email: developer@nutanix.com
    url: https://www.nutanix.dev/
  termsOfService: https://www.nutanix.com/legal/terms-of-use
servers:
- url: https://{clusterIp}:9440/PrismGateway/services/rest/v2.0
  description: Prism Element Server
  variables:
    clusterIp:
      default: localhost
      description: IP address or FQDN of the Nutanix cluster or CVM.
security:
- basicAuth: []
tags:
- name: Storage Pools
  description: Manage storage pools which represent groups of physical disks used for storing data across the cluster.
paths:
  /storage_pools:
    get:
      operationId: listStoragePools
      summary: Nutanix List storage pools
      description: Retrieves a list of all storage pools in the cluster.
      tags:
      - Storage Pools
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
  /storage_pools/{id}:
    get:
      operationId: getStoragePool
      summary: Nutanix Get a storage pool
      description: Retrieves details about a specific storage pool by its ID.
      tags:
      - Storage Pools
      parameters:
      - $ref: '#/components/parameters/EntityId'
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '404':
          description: Storage pool not found
components:
  parameters:
    EntityId:
      name: id
      in: path
      required: true
      description: The ID of the entity.
      schema:
        type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication using Prism Element username and password credentials.
externalDocs:
  description: Nutanix Prism Element v2 API Documentation
  url: https://www.nutanix.dev/api_references/prism-element/