NeuVector Sniffer API

Operations about Sniffer

Operations 6

GET /v1/sniffer Get a list of sniffers
POST /v1/sniffer Sniffer start
GET /v1/sniffer/{id} Show sniffer
DELETE /v1/sniffer/{id} Delete sniffer
PATCH /v1/sniffer/stop/{id} Stop sniffer
GET /v1/sniffer/{id}/pcap Sniffer get a pcap file

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/neuvector-sniffer-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

neuvector-sniffer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Secure Docker and Kubernetes based container deployments with the NeuVector run-time security solution.
  version: 5.6.0
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  title: NeuVector Sniffer API
  contact:
    email: support@neuvector.com
servers:
- url: https://localhost:10443/
tags:
- name: Sniffer
  description: Operations about Sniffer
paths:
  /v1/sniffer:
    get:
      tags:
      - Sniffer
      summary: Get a list of sniffers
      security:
      - ApiKeyAuth: []
      - TokenAuth: []
      parameters:
      - in: query
        name: f_workload
        required: true
        description: Workload ID
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RESTSniffersData'
    post:
      tags:
      - Sniffer
      summary: Sniffer start
      security:
      - ApiKeyAuth: []
      - TokenAuth: []
      parameters:
      - in: query
        name: f_workload
        required: true
        description: Workload ID
        schema:
          type: string
      responses:
        '200':
          description: Success
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RESTSnifferArgsData'
        description: Sniffer args data
        required: true
  /v1/sniffer/{id}:
    get:
      tags:
      - Sniffer
      summary: Show sniffer
      security:
      - ApiKeyAuth: []
      - TokenAuth: []
      parameters:
      - in: path
        name: id
        description: Sniffer ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RESTSnifferData'
    delete:
      tags:
      - Sniffer
      summary: Delete sniffer
      security:
      - ApiKeyAuth: []
      - TokenAuth: []
      parameters:
      - in: path
        name: id
        description: Sniffer ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
  /v1/sniffer/stop/{id}:
    patch:
      tags:
      - Sniffer
      summary: Stop sniffer
      security:
      - ApiKeyAuth: []
      - TokenAuth: []
      parameters:
      - in: path
        name: id
        description: Sniffer ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
  /v1/sniffer/{id}/pcap:
    get:
      tags:
      - Sniffer
      summary: Sniffer get a pcap file
      security:
      - ApiKeyAuth: []
      - TokenAuth: []
      parameters:
      - in: path
        name: id
        description: Sniffer ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success. Get pcap file.
components:
  schemas:
    RESTSniffersData:
      type: object
      required:
      - sniffers
      properties:
        sniffers:
          type: array
          items:
            $ref: '#/components/schemas/RESTSnifferInfo'
    RESTSnifferArgs:
      type: object
      properties:
        file_number:
          type: integer
          format: uint32
          example: 50
        duration:
          type: integer
          format: uint32
          example: 50
        filter:
          type: string
          example: \ port\ 1381
    RESTSnifferArgsData:
      type: object
      required:
      - sniffer
      properties:
        sniffer:
          $ref: '#/components/schemas/RESTSnifferArgs'
    RESTSnifferInfo:
      type: object
      required:
      - id
      - enforcer_id
      - container_id
      - file_number
      - size
      - status
      - args
      - start_time
      - stop_time
      properties:
        id:
          type: string
          example: e272b888bbb0765d3c172ab8477b78b
        enforcer_id:
          type: string
          example: 479e272bb78b8bbb0765156c9c6cda7b8941692fc
        container_id:
          type: string
          example: 79e82a60d019dba04e8993534c99d1c5b6286247f58
        file_number:
          type: integer
          format: uint32
          example: 1
        size:
          type: integer
          format: int64
          example: 60273
        status:
          type: string
          example: running
        args:
          type: string
          example: -C 10 -w /var/cm/pcap/3ccad_ -W 10 ether host 6f:61:35:50:10:0c
        start_time:
          type: integer
          format: int64
          example: 1509410381
        stop_time:
          type: integer
          format: int64
          example: 1509432360
    RESTSnifferData:
      type: object
      required:
      - sniffer
      properties:
        sniffer:
          $ref: '#/components/schemas/RESTSnifferInfo'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Auth-Apikey
    TokenAuth:
      type: apiKey
      in: header
      name: X-Auth-Token
externalDocs:
  description: Find out more about NeuVector
  url: https://www.suse.com/products/neuvector/