Smartcat Audit API

The Audit API from Smartcat — 1 operation(s) for audit.

Operations 1

GET /api/integration/v1/audit/logs Fetch audit logs with given filter parameters

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/smartcat-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

smartcat-audit-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account Audit API
  version: v1
servers:
- url: /
tags:
- name: Audit
paths:
  /api/integration/v1/audit/logs:
    get:
      tags:
      - Audit
      summary: Fetch audit logs with given filter parameters
      parameters:
      - name: startTime
        in: query
        description: Fetch audit logs starting from this date and time
        schema:
          type: string
          format: date-time
      - name: endTime
        in: query
        description: Fetch audit logs until this date and time
        schema:
          type: string
          format: date-time
      - name: pageNumber
        in: query
        description: Number of the page. Starts from 1
        schema:
          maximum: 2147483647
          minimum: 1
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: 'Size of the page. Available range: 1 - 5000'
        schema:
          maximum: 5000
          minimum: 1
          type: integer
          format: int32
      responses:
        '200':
          description: Request has been successfully completed
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AuditLogModel'
        '400':
          description: Returns if one or several parameters are incorrect
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorType:
      enum:
      - sender
      - receiver
      - unknown
      type: string
      format: int32
    ErrorResponse:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/ErrorType'
        code:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
        requestId:
          type:
          - string
          - 'null'
        innerException: {}
        statusCode:
          $ref: '#/components/schemas/HttpStatusCode'
      additionalProperties: false
    AuditLogModel:
      type: object
      properties:
        time:
          type: string
          description: Event time
          format: date-time
        type:
          type:
          - string
          - 'null'
          description: Event type
        userId:
          type:
          - string
          - 'null'
          description: User ID
          format: uuid
        userEmail:
          type:
          - string
          - 'null'
          description: User E-mail
        userNickName:
          type:
          - string
          - 'null'
          description: User nickname
        payload:
          type:
          - object
          - 'null'
          additionalProperties: {}
          description: Payload data
      additionalProperties: false
      description: Audit log model
    HttpStatusCode:
      enum:
      - continue
      - switchingProtocols
      - processing
      - earlyHints
      - oK
      - created
      - accepted
      - nonAuthoritativeInformation
      - noContent
      - resetContent
      - partialContent
      - multiStatus
      - alreadyReported
      - iMUsed
      - multipleChoices
      - ambiguous
      - movedPermanently
      - moved
      - found
      - redirect
      - seeOther
      - redirectMethod
      - notModified
      - useProxy
      - unused
      - temporaryRedirect
      - redirectKeepVerb
      - permanentRedirect
      - badRequest
      - unauthorized
      - paymentRequired
      - forbidden
      - notFound
      - methodNotAllowed
      - notAcceptable
      - proxyAuthenticationRequired
      - requestTimeout
      - conflict
      - gone
      - lengthRequired
      - preconditionFailed
      - requestEntityTooLarge
      - requestUriTooLong
      - unsupportedMediaType
      - requestedRangeNotSatisfiable
      - expectationFailed
      - misdirectedRequest
      - unprocessableEntity
      - unprocessableContent
      - locked
      - failedDependency
      - upgradeRequired
      - preconditionRequired
      - tooManyRequests
      - requestHeaderFieldsTooLarge
      - unavailableForLegalReasons
      - internalServerError
      - notImplemented
      - badGateway
      - serviceUnavailable
      - gatewayTimeout
      - httpVersionNotSupported
      - variantAlsoNegotiates
      - insufficientStorage
      - loopDetected
      - notExtended
      - networkAuthenticationRequired
      type: string
      format: int32