XSKY host-validators API

HostValidatorController Host Validator Management

Operations 2

POST /host-validators/ #
GET /host-validators/{host_validator_id} #

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-host-validators-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-host-validators-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 Host Validators API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: host-validators
  description: 'HostValidatorController Host Validator Management

    '
paths:
  /host-validators/:
    post:
      tags:
      - host-validators
      description: Create host validator
      operationId: CreateHostValidator
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HostValidatorResp'
        400:
          description: BadRequest
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HostValidatorCreateReq'
        description: host validator info
        required: true
  /host-validators/{host_validator_id}:
    get:
      tags:
      - host-validators
      description: Get host validator
      operationId: GetHostValidator
      parameters:
      - name: host_validator_id
        in: path
        description: host validator id
        required: true
        x-exportParamName: HostValidatorId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HostValidatorResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
components:
  schemas:
    HostValidatorCreateReq:
      type: object
      properties:
        host_validator:
          $ref: '#/components/schemas/HostValidatorCreateReq_Validator'
      title: HostValidatorCreateReq
      example:
        host_validator:
          gateway_ips:
          - gateway_ips
          - gateway_ips
          public_ip: public_ip
          host_roles:
          - host_roles
          - host_roles
          admin_ip: admin_ip
          host_type: host_type
          private_ip: private_ip
    HostValidator:
      type: object
      properties:
        admin_ip:
          type: string
        create:
          type: string
          format: date-time
        gateway_ips:
          type: array
          items:
            type: string
        host_roles:
          type: array
          items:
            type: string
        host_type:
          type: string
        id:
          type: integer
          format: int64
        private_ip:
          type: string
        public_ip:
          type: string
        report:
          type: object
          properties: {}
        status:
          type: string
        update:
          type: string
          format: date-time
      title: HostValidator
      description: HostValidator defines the validator for host
      example:
        gateway_ips:
        - gateway_ips
        - gateway_ips
        public_ip: public_ip
        host_roles:
        - host_roles
        - host_roles
        report: '{}'
        create: '2000-01-23T04:56:07.000+00:00'
        update: '2000-01-23T04:56:07.000+00:00'
        admin_ip: admin_ip
        id: 0
        host_type: host_type
        private_ip: private_ip
        status: status
    HostValidatorResp:
      type: object
      properties:
        host_validator:
          $ref: '#/components/schemas/HostValidator'
      title: HostValidatorResp
      example:
        host_validator:
          gateway_ips:
          - gateway_ips
          - gateway_ips
          public_ip: public_ip
          host_roles:
          - host_roles
          - host_roles
          report: '{}'
          create: '2000-01-23T04:56:07.000+00:00'
          update: '2000-01-23T04:56:07.000+00:00'
          admin_ip: admin_ip
          id: 0
          host_type: host_type
          private_ip: private_ip
          status: status
    HostValidatorCreateReq_Validator:
      type: object
      required:
      - admin_ip
      - host_roles
      - host_type
      properties:
        admin_ip:
          type: string
        gateway_ips:
          type: array
          items:
            type: string
        host_roles:
          type: array
          items:
            type: string
        host_type:
          type: string
        private_ip:
          type: string
        public_ip:
          type: string
      title: HostValidatorCreateReq_Validator
      example:
        gateway_ips:
        - gateway_ips
        - gateway_ips
        public_ip: public_ip
        host_roles:
        - host_roles
        - host_roles
        admin_ip: admin_ip
        host_type: host_type
        private_ip: private_ip
  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