Calyptia audit_log API

The audit_log API from Calyptia — 1 operation(s) for audit_log.

Operations 1

GET /v1/projects/{projectID}/audit_logs Audit Logs #

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/calyptia-audit-log-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

calyptia-audit-log-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Calyptia Cloud agent Audit Log API
  version: '1.0'
  description: HTTP API service of Calyptia Cloud
  contact:
    name: Calyptia
    email: hello@calyptia.com
    url: https://cloud.calyptia.com
  termsOfService: https://calyptia.com/terms/
servers:
- url: https://cloud-api.calyptia.com
  description: prod
- url: https://cloud-api-dev.calyptia.com
  description: dev
- url: https://cloud-api-staging.calyptia.com
  description: staging
- url: http://localhost:{port}
  description: local
  variables:
    port:
      default: '5000'
tags:
- name: audit_log
paths:
  /v1/projects/{projectID}/audit_logs:
    parameters:
    - name: projectID
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: auditLogs
      summary: Audit Logs
      security:
      - user: []
      - project: []
      tags:
      - audit_log
      parameters:
      - in: query
        name: components
        required: true
        schema:
          $ref: '#/components/schemas/AuditLogComponents'
      - in: query
        name: identity
        required: true
        schema:
          $ref: '#/components/schemas/AuditLogIdentity'
      - in: query
        name: url
        schema:
          type: string
      - in: query
        name: action
        schema:
          type: string
          enum:
          - CREATE
          - UPDATE
          - DELETE
      - in: query
        name: first
        schema:
          type: integer
      - in: query
        name: after
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuditLogs'
components:
  schemas:
    AuditLog:
      type: object
      properties:
        id:
          type: string
          format: uuid
        timestamp:
          type: string
          format: date-time
        url:
          type: string
          format: url
        components:
          $ref: '#/components/schemas/AuditLogComponents'
        identity:
          $ref: '#/components/schemas/AuditLogIdentity'
        action:
          $ref: '#/components/schemas/AuditLogAction'
        responseCode:
          type: integer
    AuditLogs:
      type: object
      properties:
        endCursor:
          type: string
        items:
          type: array
          items:
            $ref: '#/components/schemas/AuditLog'
    AuditLogIdentity:
      type: object
      additionalProperties:
        type: object
    AuditLogAction:
      type: string
      enum:
      - CREATE
      - UPDATE
      - DELETE
    AuditLogComponents:
      type: object
      additionalProperties:
        type: string
  securitySchemes:
    user:
      type: http
      scheme: bearer
    project:
      name: X-Project-Token
      type: apiKey
      in: header
    auth0:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://sso.calyptia.com/oauth/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://sso.calyptia.com/authorize
          tokenUrl: https://sso.calyptia.com/oauth/token
          scopes: {}