XSKY network-addresses API
NetworkAddressController Network Address Management
NetworkAddressController Network Address Management
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/xsky-network-addresses-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
description: XMS is the controller of distributed storage system
version: SDS_4.2.000.0.200302
title: XMS access-paths Network Addresses API
contact: {}
license:
name: Commercial
servers:
- url: /v1
tags:
- name: network-addresses
description: 'NetworkAddressController Network Address Management
'
paths:
/network-addresses/:
get:
tags:
- network-addresses
description: List network addresses
operationId: ListNetworkAddresses
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: network_interface_id
in: query
description: network interface id
required: false
x-exportParamName: NetworkInterfaceId
schema:
type: integer
format: int64
- name: host_id
in: query
description: host id
required: false
x-exportParamName: HostId
schema:
type: integer
format: int64
- name: role
in: query
description: network address role
required: false
x-exportParamName: Role
schema:
type: string
- 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/NetworkAddressesResp'
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
/network-addresses/{network_address_id}:
get:
tags:
- network-addresses
description: Get a network address
operationId: GetNetworkAddress
parameters:
- name: network_address_id
in: path
description: network address id
required: true
x-exportParamName: NetworkAddressId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/NetworkAddressResp'
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
components:
schemas:
NetworkInterface_Nestview:
type: object
properties:
id:
type: integer
format: int64
mac_address:
type: string
name:
type: string
title: NetworkInterface_Nestview
example:
mac_address: mac_address
name: name
id: 1
NetworkAddress:
type: object
properties:
available:
type: boolean
create:
type: string
format: date-time
host:
$ref: '#/components/schemas/Host_Nestview'
id:
type: integer
format: int64
ip:
type: string
mask:
type: integer
format: int64
network_interface:
$ref: '#/components/schemas/NetworkInterface_Nestview'
roles:
type: array
items:
type: string
update:
type: string
format: date-time
title: NetworkAddress
description: NetworkAddress defines model of network address @grpc-models-proto
example:
ip: ip
roles:
- roles
- roles
available: true
host:
name: name
admin_ip: admin_ip
id: 0
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 0
mask: 6
network_interface:
mac_address: mac_address
name: name
id: 1
NetworkAddressResp:
type: object
properties:
network_address:
description: network address record
$ref: '#/components/schemas/NetworkAddress'
title: NetworkAddressResp
example:
network_address:
ip: ip
roles:
- roles
- roles
available: true
host:
name: name
admin_ip: admin_ip
id: 0
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 0
mask: 6
network_interface:
mac_address: mac_address
name: name
id: 1
NetworkAddressesResp:
type: object
properties:
network_addresses:
type: array
description: network address records
items:
$ref: '#/components/schemas/NetworkAddress'
title: NetworkAddressesResp
example:
network_addresses:
- ip: ip
roles:
- roles
- roles
available: true
host:
name: name
admin_ip: admin_ip
id: 0
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 0
mask: 6
network_interface:
mac_address: mac_address
name: name
id: 1
- ip: ip
roles:
- roles
- roles
available: true
host:
name: name
admin_ip: admin_ip
id: 0
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 0
mask: 6
network_interface:
mac_address: mac_address
name: name
id: 1
Host_Nestview:
type: object
required:
- admin_ip
properties:
admin_ip:
type: string
id:
type: integer
format: int64
name:
type: string
title: Host_Nestview
example:
name: name
admin_ip: admin_ip
id: 0
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