Chaitin Tech ipgroup API

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

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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

chaitin-ipgroup-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: APISec Management account ipgroup API
  version: '26.05'
  description: Generated from APISec skyview APIView classes.
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.GetIPGroupRes:
    type: object
    properties:
      nodes:
        type: array
        items:
          $ref: '#/definitions/ipg.IPGroupVO'
      total:
        type: integer
  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.DeleteIPGroupReq:
    type: object
    properties:
      ids:
        type: array
        items:
          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