Chaitin Tech log/audit API

The log/audit API from Chaitin Tech — 1 operation(s) for log/audit.

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-log-audit-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-log-audit-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: APISec Management account log/audit API
  version: '26.05'
  description: Generated from APISec skyview APIView classes.
tags:
- name: log/audit
paths:
  /business/audit_log:
    get:
      produces:
      - application/json
      tags:
      - log/audit
      summary: get audit logs
      parameters:
      - minimum: 1
        type: integer
        name: page
        in: query
        x-cli-description: 页码
      - maximum: 100
        minimum: 1
        type: integer
        name: page_size
        in: query
        x-cli-description: 每页数量
      responses:
        '200':
          description: OK
          schema:
            allOf:
            - $ref: '#/definitions/response.JSONBody'
            - type: object
              properties:
                data:
                  $ref: '#/definitions/audit_log.ListAuditLogRes'
      x-cli-summary: 查看审计日志列表
definitions:
  audit_log.ListAuditLogItem:
    type: object
    properties:
      content:
        type: string
      created_at:
        type: integer
      id:
        type: integer
      ip:
        type: string
      username:
        type: string
  audit_log.ListAuditLogRes:
    type: object
    properties:
      data:
        type: array
        items:
          $ref: '#/definitions/audit_log.ListAuditLogItem'
      total:
        type: integer
  response.JSONBody:
    type: object
    properties:
      data: {}
      err:
        type: string
      msg:
        type: string