XSKY cloud-instances API

CloudInstanceController Cloud Instance Management

Operations 3

GET /cloud-instances/ #
GET /cloud-instances/{cloud_instance_id} #
GET /cloud-instances/{cloud_instance_id}/samples #

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/xsky-cloud-instances-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

xsky-cloud-instances-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: XMS is the controller of distributed storage system
  version: SDS_4.2.000.0.200302
  title: XMS access-paths Cloud Instances API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: cloud-instances
  description: 'CloudInstanceController Cloud Instance Management

    '
paths:
  /cloud-instances/:
    get:
      tags:
      - cloud-instances
      description: List cloud instances
      operationId: ListCloudInstances
      parameters:
      - name: limit
        in: query
        description: paging param
        required: false
        x-exportParamName: Limit
        schema:
          type: integer
          format: int64
      - name: offset
        in: query
        description: paging param
        required: false
        x-exportParamName: Offset
        schema:
          type: integer
          format: int64
      - name: cloud_platform_id
        in: query
        description: cloud platform id
        required: false
        x-exportParamName: CloudPlatformId
        schema:
          type: integer
          format: int64
      - name: cloud_platform_type
        in: query
        description: cloud platform type
        required: false
        x-exportParamName: CloudPlatformType
        schema:
          type: string
      - name: cloud_platform_name
        in: query
        description: cloud platform name
        required: false
        x-exportParamName: CloudPlatformName
        schema:
          type: string
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudInstancesResp'
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
  /cloud-instances/{cloud_instance_id}:
    get:
      tags:
      - cloud-instances
      description: Get a cloud instance
      operationId: GetCloudInstance
      parameters:
      - name: cloud_instance_id
        in: path
        description: cloud instance id
        required: true
        x-exportParamName: CloudInstanceId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudInstanceResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
  /cloud-instances/{cloud_instance_id}/samples:
    get:
      tags:
      - cloud-instances
      description: get a cloud instance's Samples
      operationId: GetCloudInstanceSamples
      parameters:
      - name: cloud_instance_id
        in: path
        description: cloud instance id
        required: true
        x-exportParamName: CloudInstanceId
        schema:
          type: integer
          format: int64
      - name: duration_begin
        in: query
        description: duration begin timestamp
        required: false
        x-exportParamName: DurationBegin
        schema:
          type: string
      - name: duration_end
        in: query
        description: duration end timestamp
        required: false
        x-exportParamName: DurationEnd
        schema:
          type: string
      - name: period
        in: query
        description: samples period
        required: false
        x-exportParamName: Period
        schema:
          type: string
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudInstanceSamplesResp'
        400:
          description: BadRequest
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
components:
  schemas:
    CloudInstanceStat:
      type: object
      properties:
        create:
          type: string
          format: date-time
        read_bandwidth_kbyte:
          type: number
          format: double
        read_iops:
          type: number
          format: double
        read_latency_us:
          type: number
          format: double
        total_bandwidth_kbyte:
          type: number
          format: double
        total_iops:
          type: number
          format: double
        write_bandwidth_kbyte:
          type: number
          format: double
        write_iops:
          type: number
          format: double
        write_latency_us:
          type: number
          format: double
      title: CloudInstanceStat
      description: CloudInstanceStat represents the monitoring metrics of a cloud instance
      example:
        read_bandwidth_kbyte: 0.8008281904610115
        write_bandwidth_kbyte: 2.3021358869347655
        create: '2000-01-23T04:56:07.000+00:00'
        total_bandwidth_kbyte: 5.962133916683182
        write_iops: 7.061401241503109
        write_latency_us: 9.301444243932576
        total_iops: 5.637376656633329
        read_latency_us: 1.4658129805029452
        read_iops: 6.027456183070403
    CloudInstance:
      type: object
      properties:
        cloud_datacenter:
          $ref: '#/components/schemas/CloudDatacenter_Nestview'
        cloud_instance_id:
          type: string
        cloud_platform:
          $ref: '#/components/schemas/CloudPlatform_Nestview'
        cloud_volume_num:
          type: integer
          format: int64
        cores:
          type: integer
          format: int64
        create:
          type: string
          format: date-time
        hostname:
          type: string
        id:
          type: integer
          format: int64
        memory_kbyte:
          type: integer
          format: int64
        name:
          type: string
        root_device_type:
          type: string
        update:
          type: string
          format: date-time
      title: CloudInstance
      description: CloudInstance defines instances of the cloud platform
    CloudInstanceSamplesResp:
      type: object
      properties:
        cloud_instance_samples:
          type: array
          items:
            $ref: '#/components/schemas/CloudInstanceStat'
      title: CloudInstanceSamplesResp
      example:
        cloud_instance_samples:
        - read_bandwidth_kbyte: 0.8008281904610115
          write_bandwidth_kbyte: 2.3021358869347655
          create: '2000-01-23T04:56:07.000+00:00'
          total_bandwidth_kbyte: 5.962133916683182
          write_iops: 7.061401241503109
          write_latency_us: 9.301444243932576
          total_iops: 5.637376656633329
          read_latency_us: 1.4658129805029452
          read_iops: 6.027456183070403
        - read_bandwidth_kbyte: 0.8008281904610115
          write_bandwidth_kbyte: 2.3021358869347655
          create: '2000-01-23T04:56:07.000+00:00'
          total_bandwidth_kbyte: 5.962133916683182
          write_iops: 7.061401241503109
          write_latency_us: 9.301444243932576
          total_iops: 5.637376656633329
          read_latency_us: 1.4658129805029452
          read_iops: 6.027456183070403
    CloudPlatform_Nestview:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        type:
          type: string
      title: CloudPlatform_Nestview
      example:
        name: name
        id: 6
        type: type
    CloudInstanceResp:
      type: object
      properties:
        cloud_instance:
          description: cloud instance record
          $ref: '#/components/schemas/CloudInstanceRecord'
      title: CloudInstanceResp
      example:
        cloud_instance: ''
    CloudInstancesResp:
      type: object
      properties:
        cloud_instances:
          type: array
          description: cloud instance records
          items:
            $ref: '#/components/schemas/CloudInstanceRecord'
      title: CloudInstancesResp
      example:
        cloud_instances:
        - ''
        - ''
    CloudDatacenter_Nestview:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
      title: CloudDatacenter_Nestview
      example:
        name: name
        id: 0
    CloudInstanceRecord:
      title: CloudInstanceRecord
      allOf:
      - $ref: '#/components/schemas/CloudInstance'
      - properties:
          samples:
            type: array
            items:
              $ref: '#/components/schemas/CloudInstanceStat'
      description: CloudInstanceRecord combine CloudInstance and CloudInstanceStat as API response
  securitySchemes:
    tokenInHeader:
      description: auth by token
      type: apiKey
      name: Xms-Auth-Token
      in: header
    tokenInQuery:
      description: auth by token
      type: apiKey
      name: token
      in: query