Chaitin Tech ipgroup API

The ipgroup API from Chaitin Tech — 3 operation(s) for ipgroup.

Operations 6

GET /open/ipgroup list ip group
POST /open/ipgroup create ip group
PUT /open/ipgroup update ip group
DELETE /open/ipgroup delete ip group
POST /open/ipgroup/append add ip to ip group
GET /open/ipgroup/detail get ip group detail

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-ipgroup-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-ipgroup-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: APISec Management account Ipgroup 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: ipgroup
paths:
  /open/ipgroup:
    get:
      produces:
      - application/json
      tags:
      - ipgroup
      summary: list ip group
      parameters:
      - type: integer
        name: top
        in: query
        x-cli-description: 返回前 N 条
      responses:
        '200':
          description: OK
          schema:
            allOf:
            - $ref: '#/definitions/response.JSONBody'
            - type: object
              properties:
                data:
                  $ref: '#/definitions/api.GetIPGroupRes'
      x-cli-summary: 获取 IP Group 列表
    post:
      consumes:
      - application/json
      produces:
      - application/json
      tags:
      - ipgroup
      summary: create ip group
      parameters:
      - description: request params
        name: request
        in: body
        required: true
        schema:
          $ref: '#/definitions/ipg.IPGroupVO'
      responses:
        '200':
          description: OK
          schema:
            allOf:
            - $ref: '#/definitions/response.JSONBody'
            - type: object
              properties:
                data:
                  type: integer
      x-cli-summary: 创建 IP Group
    put:
      consumes:
      - application/json
      produces:
      - application/json
      tags:
      - ipgroup
      summary: update ip group
      parameters:
      - description: request params
        name: request
        in: body
        required: true
        schema:
          $ref: '#/definitions/ipg.IPGroupVO'
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/response.JSONBody'
      x-cli-summary: 更新 IP Group
    delete:
      consumes:
      - application/json
      produces:
      - application/json
      tags:
      - ipgroup
      summary: delete ip group
      parameters:
      - description: request params
        name: request
        in: body
        required: true
        schema:
          $ref: '#/definitions/api.DeleteIPGroupReq'
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/response.JSONBody'
      x-cli-summary: 删除 IP Group
  /open/ipgroup/append:
    post:
      consumes:
      - application/json
      produces:
      - application/json
      tags:
      - ipgroup
      summary: add ip to ip group
      parameters:
      - description: request params
        name: request
        in: body
        required: true
        schema:
          $ref: '#/definitions/api.PostAppendIPGroupRequest'
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/response.JSONBody'
      x-cli-summary: 添加 IP 到 IP Group
  /open/ipgroup/detail:
    get:
      produces:
      - application/json
      tags:
      - ipgroup
      summary: get ip group detail
      parameters:
      - type: integer
        name: id
        in: query
        x-cli-description: 资源 ID
      responses:
        '200':
          description: OK
          schema:
            allOf:
            - $ref: '#/definitions/response.JSONBody'
            - type: object
              properties:
                data:
                  $ref: '#/definitions/api.GetIPGroupDetailRes'
      x-cli-summary: 获取 IP Group 详情
definitions:
  response.JSONBody:
    type: object
    properties:
      data: {}
      err:
        type: string
      msg:
        type: string
  api.GetIPGroupDetailRes:
    type: object
    properties:
      data:
        $ref: '#/definitions/ipg.IPGroupVO'
  api.PostAppendIPGroupRequest:
    type: object
    properties:
      ip_group_ids:
        type: array
        items:
          type: integer
      ips:
        type: array
        items:
          type: string
  api.GetIPGroupRes:
    type: object
    properties:
      nodes:
        type: array
        items:
          $ref: '#/definitions/ipg.IPGroupVO'
      total:
        type: integer
  ipg.IPGroupVO:
    type: object
    properties:
      builtin:
        type: boolean
      comment:
        type: string
      id:
        type: integer
      ips:
        type: array
        items:
          type: string
      reference:
        type: string
      total:
        type: integer
      updated_at:
        type: string
  api.DeleteIPGroupReq:
    type: object
    properties:
      ids:
        type: array
        items:
          type: integer