Chaitin Tech cert API

The cert API from Chaitin Tech — 2 operation(s) for cert.

Operations 4

GET /open/system get system info
PUT /open/system update management cert
GET /open/system/authorize get license
DELETE /open/system/authorize delete license

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/chaitin-cert-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

chaitin-cert-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: APISec Management account Cert API
  version: '26.05'
  description: Generated from APISec skyview APIView classes.
servers:
- url: https://docs.waf.chaitin.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: cert
paths:
  /open/system:
    get:
      produces:
      - application/json
      tags:
      - cert
      summary: get system info
      responses:
        '200':
          description: OK
          schema:
            allOf:
            - $ref: '#/definitions/response.JSONBody'
            - type: object
              properties:
                data:
                  $ref: '#/definitions/system.AboutRes'
      x-cli-summary: 获取系统信息
    put:
      consumes:
      - application/json
      produces:
      - application/json
      tags:
      - cert
      summary: update management cert
      parameters:
      - description: request params
        name: requests
        in: body
        required: true
        schema:
          $ref: '#/definitions/system.UpdateReq'
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/response.JSONBody'
      x-cli-summary: 更新管理证书
  /open/system/authorize:
    get:
      produces:
      - application/json
      tags:
      - cert
      summary: get license
      responses:
        '200':
          description: OK
          schema:
            allOf:
            - $ref: '#/definitions/response.JSONBody'
            - type: object
              properties:
                data:
                  $ref: '#/definitions/system.CodeApplyInfoRes'
      x-cli-summary: 获取授权详情
    delete:
      produces:
      - application/json
      tags:
      - cert
      summary: delete license
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/response.JSONBody'
      x-cli-summary: 删除授权
definitions:
  system.UpdateReq:
    type: object
    properties:
      cert_id:
        type: integer
  response.JSONBody:
    type: object
    properties:
      data: {}
      err:
        type: string
      msg:
        type: string
  river.Edition:
    type: integer
    format: int32
    enum:
    - 0
    - 1
    - 2
    - 3
    x-enum-comments:
      Edition_EDITION_ENTERPRISE: 企业版
      Edition_EDITION_LITE: Lite 版
      Edition_EDITION_PROFESSIONAL: 专业版
      Edition_EDITION_UNKOWN: 未知
    x-enum-descriptions:
    - 未知
    - 专业版
    - 企业版
    - Lite 版
    x-enum-varnames:
    - Edition_EDITION_UNKOWN
    - Edition_EDITION_PROFESSIONAL
    - Edition_EDITION_ENTERPRISE
    - Edition_EDITION_LITE
  system.AboutRes:
    type: object
    properties:
      cert_id:
        type: integer
      created_at:
        type: integer
      deprecated:
        type: boolean
      license:
        $ref: '#/definitions/system.AboutLicense'
      machine_id:
        type: string
      outdated:
        type: boolean
      oversea:
        type: boolean
      password_expire_day:
        type: integer
      slave:
        type: boolean
      staging:
        type: boolean
      time:
        type: string
      version:
        type: string
  system.AboutLicense:
    type: object
    properties:
      valid:
        type: boolean
  system.CodeApplyInfoRes:
    type: object
    properties:
      expired_at:
        type: integer
      org_id:
        type: string
      org_name:
        type: string
      pwd_updated_at:
        type: integer
      river_url:
        type: string
      role:
        $ref: '#/definitions/consts.UserRole'
      state:
        type: string
      timeout:
        type: boolean
      user_id:
        type: integer
      version:
        $ref: '#/definitions/river.Edition'
  consts.UserRole:
    type: integer
    enum:
    - 0
    - 1
    - 2
    - 3
    - 4
    - 5
    x-enum-varnames:
    - UserRoleUnknown
    - UserRoleAdmin
    - UserRoleManager
    - UserRoleConfig
    - UserRoleAudit
    - UserRoleMax