Isovalent prefilter API

The prefilter API from Isovalent — 1 operation(s) for prefilter.

Operations 3

GET /prefilter Retrieve list of CIDRs
PATCH /prefilter Update list of CIDRs
DELETE /prefilter Delete list of CIDRs

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/isovalent-prefilter-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

isovalent-prefilter-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cilium bgp Prefilter API
  description: Cilium
  version: v1beta1
  x-provenance:
    method: derived
    authored_by: API Evangelist
    derived_on: '2026-08-19'
    first_party: false
    provider_published: false
    source: Modelled from the provider's public HTML documentation.
    note: 'Not published by the provider. Probed 2026-08-19: no anonymously fetchable first-party contract. Cilium''s agent/health specs are open source; the Isovalent-branded documents here were modelled from docs.'
servers:
- url: /v1
tags:
- name: prefilter
paths:
  /prefilter:
    get:
      summary: Retrieve list of CIDRs
      tags:
      - prefilter
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Prefilter'
        '500':
          description: Prefilter get failed
          x-go-name: Failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    patch:
      summary: Update list of CIDRs
      tags:
      - prefilter
      parameters:
      - $ref: '#/components/parameters/prefilter-spec'
      responses:
        '200':
          description: Updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Prefilter'
        '403':
          description: Forbidden
        '461':
          description: Invalid CIDR prefix
          x-go-name: InvalidCIDR
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Prefilter update failed
          x-go-name: Failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    delete:
      summary: Delete list of CIDRs
      tags:
      - prefilter
      parameters:
      - $ref: '#/components/parameters/prefilter-spec'
      responses:
        '200':
          description: Deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Prefilter'
        '403':
          description: Forbidden
        '461':
          description: Invalid CIDR prefix
          x-go-name: InvalidCIDR
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Prefilter delete failed
          x-go-name: Failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    PrefilterStatus:
      description: CIDR ranges implemented in the Prefilter
      type: object
      properties:
        realized:
          $ref: '#/components/schemas/PrefilterSpec'
    Prefilter:
      description: Collection of endpoints to be served
      type: object
      properties:
        spec:
          $ref: '#/components/schemas/PrefilterSpec'
        status:
          $ref: '#/components/schemas/PrefilterStatus'
    Error:
      type: string
    PrefilterSpec:
      description: CIDR ranges implemented in the Prefilter
      type: object
      properties:
        revision:
          type: integer
        deny:
          type: array
          items:
            type: string
  parameters:
    prefilter-spec:
      name: prefilter-spec
      description: List of CIDR ranges for filter table
      required: true
      in: body
      schema:
        $ref: '#/components/schemas/PrefilterSpec'
x-schemes:
- unix