Broadcom Datastores API

Operations for managing datastores

Operations 1

GET /vcenter/datastore Broadcom List datastores #

Documentation

Specifications

Schemas & Data

Other Resources

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/broadcom-datastores-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

broadcom-datastores-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Broadcom vSphere Automation Datastores API
  description: The vSphere Automation API provides a unified programmatic interface for managing VMware vSphere environments. It enables automation of virtual machine lifecycle management, host and cluster configuration, content library management, tagging, and other vSphere infrastructure operations. This RESTful API replaces many legacy SOAP-based interfaces and supports JSON request and response payloads over HTTPS.
  version: 8.0.0
  contact:
    name: Broadcom Developer Support
    url: https://developer.broadcom.com
  license:
    name: Proprietary
    url: https://www.broadcom.com/company/legal/licensing
servers:
- url: https://{vcenter}/api
  description: vCenter Server instance
  variables:
    vcenter:
      default: vcenter.example.com
      description: The hostname or IP address of the vCenter Server
security:
- sessionAuth: []
tags:
- name: Datastores
  description: Operations for managing datastores
paths:
  /vcenter/datastore:
    get:
      summary: Broadcom List datastores
      description: Returns information about datastores in the vCenter Server.
      operationId: listDatastores
      tags:
      - Datastores
      parameters:
      - name: filter.names
        in: query
        schema:
          type: array
          items:
            type: string
      - name: filter.types
        in: query
        schema:
          type: array
          items:
            type: string
            enum:
            - VMFS
            - NFS
            - NFS41
            - CIFS
            - VSAN
            - VFFS
            - VVOL
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DatastoreSummary'
components:
  schemas:
    DatastoreSummary:
      type: object
      properties:
        datastore:
          type: string
        name:
          type: string
        type:
          type: string
          enum:
          - VMFS
          - NFS
          - NFS41
          - CIFS
          - VSAN
          - VFFS
          - VVOL
        capacity:
          type: integer
          format: int64
        free_space:
          type: integer
          format: int64
  securitySchemes:
    sessionAuth:
      type: apiKey
      in: header
      name: vmware-api-session-id
      description: Session token obtained via POST /cis/session
    basicAuth:
      type: http
      scheme: basic
      description: Username and password for session creation
externalDocs:
  description: vSphere Automation API Reference
  url: https://developer.broadcom.com/xapis/vsphere-automation-api/latest/