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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/xsky-vips-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
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 Vips API
contact: {}
license:
name: Commercial
servers:
- url: /v1
tags:
- name: vips
description: 'VIPController API /vips
'
paths:
/vips/:
get:
tags:
- vips
description: List vips
operationId: ListVIPs
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: vip_group_id
in: query
description: vip_group id
required: false
x-exportParamName: VipGroupId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/VIPsResp'
security:
- tokenInQuery: []
- tokenInHeader: []
post:
tags:
- vips
description: Create a vip
operationId: CreateVIP
responses:
202:
description: Accepted
content:
application/json:
schema:
$ref: '#/components/schemas/VIPResp'
400:
description: BadRequest
409:
description: Conflict
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/VIPCreateReq'
description: vip info
required: true
/vips/{vip_id}:
get:
tags:
- vips
description: Get a vip
operationId: GetVIP
parameters:
- name: vip_id
in: path
description: vip id
required: true
x-exportParamName: VipId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/VIPResp'
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
delete:
tags:
- vips
description: Delete a vip
operationId: DeleteVIP
parameters:
- name: vip_id
in: path
description: vip id
required: true
x-exportParamName: VipId
schema:
type: integer
format: int64
responses:
202:
description: Accepted
content:
application/json:
schema:
$ref: '#/components/schemas/VIPResp'
404:
description: NotFound
409:
description: Conflict
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
patch:
tags:
- vips
description: Update a vip
operationId: UpdateVIP
parameters:
- name: vip_id
in: path
description: vip id
required: true
x-exportParamName: VipId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/VIPResp'
400:
description: BadRequest
404:
description: NotFound
409:
description: Conflict
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
components:
schemas:
VIPCreateReq_VIP:
type: object
required:
- ip
- network_address_id
- vip_group_id
properties:
ip:
type: string
mask:
type: integer
format: int64
network_address_id:
type: integer
format: int64
vip_group_id:
type: integer
format: int64
title: VIPCreateReq_VIP
VIP:
type: object
properties:
action_status:
type: string
create:
type: string
format: date-time
id:
type: integer
format: int64
ip:
type: string
mac_address:
type: string
mask:
type: integer
format: int64
status:
type: string
update:
type: string
format: date-time
vip_group:
$ref: '#/components/schemas/VIPGroup_Nestview'
virtual_router_id:
type: integer
format: int64
title: VIP
description: VIP is a virtual IP provided access to resources.
VIPCreateReq:
type: object
required:
- vip
properties:
vip:
$ref: '#/components/schemas/VIPCreateReq_VIP'
title: VIPCreateReq
VIPGroup_Nestview:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
network:
type: string
resource_id:
type: integer
format: int64
resource_type:
type: string
title: VIPGroup_Nestview
VIPsResp:
type: object
properties:
vips:
type: array
items:
$ref: '#/components/schemas/VIPRecord'
title: VIPsResp
example:
vips:
- ''
- ''
VIPResp:
type: object
properties:
vip:
$ref: '#/components/schemas/VIPRecord'
title: VIPResp
example:
vip: ''
VIPRecord:
title: VIPRecord
allOf:
- $ref: '#/components/schemas/VIP'
- properties:
current_vip_instance:
$ref: '#/components/schemas/VIPInstance_Nestview'
default_vip_instance:
description: 'Copy these two fields from corresponding fields of VIP to avoid JSON marshal
recursion.'
$ref: '#/components/schemas/VIPInstance_Nestview'
description: VIPRecord represents doc returned by API.
VIPInstance_Nestview:
type: object
properties:
id:
type: integer
format: int64
title: VIPInstance_Nestview
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