XSKY cloud-platforms API

CloudPlatformController Cloud Platform Management

Operations 6

GET /cloud-platforms/ #
POST /cloud-platforms/ #
GET /cloud-platforms/{cloud_platform_id} #
DELETE /cloud-platforms/{cloud_platform_id} #
PATCH /cloud-platforms/{cloud_platform_id} #
POST /cloud-platforms/{cloud_platform_id}:sync #

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-platforms-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-platforms-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 Platforms API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: cloud-platforms
  description: 'CloudPlatformController Cloud Platform Management

    '
paths:
  /cloud-platforms/:
    get:
      tags:
      - cloud-platforms
      description: List cloud platforms
      operationId: ListCloudPlatforms
      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
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudPlatformsResp'
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    post:
      tags:
      - cloud-platforms
      description: Create cloud platform
      operationId: CreateCloudPlatform
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudPlatformResp'
        400:
          description: BadRequest
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CloudPlatformCreateReq'
        description: cloud platform info
        required: true
  /cloud-platforms/{cloud_platform_id}:
    get:
      tags:
      - cloud-platforms
      description: Get a cloud platform
      operationId: GetCloudPlatform
      parameters:
      - name: cloud_platform_id
        in: path
        description: cloud platform id
        required: true
        x-exportParamName: CloudPlatformId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudPlatformResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    delete:
      tags:
      - cloud-platforms
      description: Delete cloud platform
      operationId: DeleteCloudPlatform
      parameters:
      - name: cloud_platform_id
        in: path
        description: cloud platform id
        required: true
        x-exportParamName: CloudPlatformId
        schema:
          type: integer
          format: int64
      responses:
        204:
          description: No Content
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    patch:
      tags:
      - cloud-platforms
      description: Update a cloud platform
      operationId: UpdateCloudPlatform
      parameters:
      - name: cloud_platform_id
        in: path
        description: cloud platform id
        required: true
        x-exportParamName: CloudPlatformId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudPlatformResp'
        400:
          description: BadRequest
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInHeader: []
      - tokenInQuery: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CloudPlatformUpdateReq'
        description: cloud platform info
        required: true
  /cloud-platforms/{cloud_platform_id}:sync:
    post:
      tags:
      - cloud-platforms
      description: Sync a cloud platform
      operationId: SyncCloudPlatform
      parameters:
      - name: cloud_platform_id
        in: path
        description: cloud platform id
        required: true
        x-exportParamName: CloudPlatformId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudPlatformResp'
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInHeader: []
      - tokenInQuery: []
components:
  schemas:
    CloudPlatformsResp:
      type: object
      properties:
        cloud_platforms:
          type: array
          description: cloud platforms
          items:
            $ref: '#/components/schemas/CloudPlatform'
      title: CloudPlatformsResp
      example:
        cloud_platforms:
        - attached_cloud_volume_num: 0
          cloud_volume_num: 1
          description: description
          update: '2000-01-23T04:56:07.000+00:00'
          sync_time: '2000-01-23T04:56:07.000+00:00'
          cloud_instance_num: 6
          type: type
          url: url
          extra_properties:
            domain_id: domain_id
            tenant_id: tenant_id
            domain_name: domain_name
            tenant_name: tenant_name
            regions:
            - regions
            - regions
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          id: 5
          action_status: action_status
          status: status
          username: username
        - attached_cloud_volume_num: 0
          cloud_volume_num: 1
          description: description
          update: '2000-01-23T04:56:07.000+00:00'
          sync_time: '2000-01-23T04:56:07.000+00:00'
          cloud_instance_num: 6
          type: type
          url: url
          extra_properties:
            domain_id: domain_id
            tenant_id: tenant_id
            domain_name: domain_name
            tenant_name: tenant_name
            regions:
            - regions
            - regions
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          id: 5
          action_status: action_status
          status: status
          username: username
    CloudPlatformUpdateReq_Platform:
      type: object
      properties:
        name:
          type: string
          description: name of cloud platform
        password:
          type: string
          description: password of cloud platform user
        url:
          type: string
        username:
          type: string
      title: CloudPlatformUpdateReq_Platform
      example:
        password: password
        name: name
        url: url
        username: username
    CloudPlatformUpdateReq:
      type: object
      properties:
        cloud_platform:
          $ref: '#/components/schemas/CloudPlatformUpdateReq_Platform'
      title: CloudPlatformUpdateReq
      example:
        cloud_platform:
          password: password
          name: name
          url: url
          username: username
    CloudPlatform:
      type: object
      properties:
        action_status:
          type: string
        attached_cloud_volume_num:
          type: integer
          format: int64
        cloud_instance_num:
          type: integer
          format: int64
        cloud_volume_num:
          type: integer
          format: int64
        create:
          type: string
          format: date-time
        description:
          type: string
        extra_properties:
          $ref: '#/components/schemas/CloudExtraProperties'
        id:
          type: integer
          format: int64
        name:
          type: string
        status:
          type: string
        sync_time:
          type: string
          format: date-time
        type:
          type: string
        update:
          type: string
          format: date-time
        url:
          type: string
        username:
          type: string
      title: CloudPlatform
      description: CloudPlatform defines different cloud platforms
      example:
        attached_cloud_volume_num: 0
        cloud_volume_num: 1
        description: description
        update: '2000-01-23T04:56:07.000+00:00'
        sync_time: '2000-01-23T04:56:07.000+00:00'
        cloud_instance_num: 6
        type: type
        url: url
        extra_properties:
          domain_id: domain_id
          tenant_id: tenant_id
          domain_name: domain_name
          tenant_name: tenant_name
          regions:
          - regions
          - regions
        name: name
        create: '2000-01-23T04:56:07.000+00:00'
        id: 5
        action_status: action_status
        status: status
        username: username
    CloudExtraProperties:
      type: object
      properties:
        domain_id:
          type: string
          description: domain id for openstack
        domain_name:
          type: string
          description: domain name for openstack
        regions:
          type: array
          description: regions for openstack
          items:
            type: string
        tenant_id:
          type: string
          description: tenant id for openstack
        tenant_name:
          type: string
          description: tenant name for openstack
      title: CloudExtraProperties
      description: CloudExtraProperties contains extra properties
      example:
        domain_id: domain_id
        tenant_id: tenant_id
        domain_name: domain_name
        tenant_name: tenant_name
        regions:
        - regions
        - regions
    CloudPlatformCreateReq:
      type: object
      properties:
        cloud_platform:
          $ref: '#/components/schemas/CloudPlatformCreateReq_Platform'
      title: CloudPlatformCreateReq
      example:
        cloud_platform:
          password: password
          extra_properties:
            domain_id: domain_id
            tenant_id: tenant_id
            domain_name: domain_name
            tenant_name: tenant_name
            regions:
            - regions
            - regions
          name: name
          description: description
          type: type
          url: url
          username: username
    CloudPlatformResp:
      type: object
      properties:
        cloud_platform:
          description: cloud platform
          $ref: '#/components/schemas/CloudPlatform'
      title: CloudPlatformResp
      example:
        cloud_platform:
          attached_cloud_volume_num: 0
          cloud_volume_num: 1
          description: description
          update: '2000-01-23T04:56:07.000+00:00'
          sync_time: '2000-01-23T04:56:07.000+00:00'
          cloud_instance_num: 6
          type: type
          url: url
          extra_properties:
            domain_id: domain_id
            tenant_id: tenant_id
            domain_name: domain_name
            tenant_name: tenant_name
            regions:
            - regions
            - regions
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          id: 5
          action_status: action_status
          status: status
          username: username
    CloudPlatformCreateReq_Platform:
      type: object
      properties:
        description:
          type: string
          description: description of cloud platform
        extra_properties:
          description: extra properties of cloud platform
          $ref: '#/components/schemas/CloudExtraProperties'
        name:
          type: string
          description: name of cloud platform
        password:
          type: string
          description: password of cloud platform user
        type:
          type: string
          description: type of cloud platform
        url:
          type: string
        username:
          type: string
      title: CloudPlatformCreateReq_Platform
      example:
        password: password
        extra_properties:
          domain_id: domain_id
          tenant_id: tenant_id
          domain_name: domain_name
          tenant_name: tenant_name
          regions:
          - regions
          - regions
        name: name
        description: description
        type: type
        url: url
        username: username
  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