Cilium Lrp API

The Lrp API from Cilium — 1 operation(s) for lrp.

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/cilium-lrp-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

cilium-lrp-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Cilium BGP Lrp API
  description: The Cilium REST API provides access to the Cilium daemon and agent endpoints for managing Kubernetes network policy, security, and connectivity. The API is served by the cilium-agent process over a local Unix domain socket and HTTP interface. It covers endpoint management, identity management, policy configuration, IP address management, service configuration, BGP operations, and daemon health status.
  version: v1beta1
  contact:
    name: Cilium Community
    url: https://cilium.io/get-help/
  termsOfService: https://cilium.io/privacy/
servers:
- url: http://localhost/v1
  description: Local Cilium Agent (Unix socket or HTTP)
tags:
- name: Lrp
paths:
  /lrp:
    get:
      operationId: listLocalRedirectPolicies
      summary: Cilium List local redirect policies
      description: Returns all local redirect policies (LRP) configured on this node, which redirect traffic destined for a frontend address to local backend endpoints rather than using the normal load balancer.
      tags:
      - Lrp
      responses:
        '200':
          description: Local redirect policy list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LRPSpec'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    LRPSpec:
      type: object
      description: Local redirect policy specification.
      properties:
        uid:
          type: string
          description: Unique identifier for this LRP.
        name:
          type: string
          description: LRP name from the Kubernetes resource.
        namespace:
          type: string
          description: Kubernetes namespace of this LRP.
        frontend-type:
          type: string
          description: Type of frontend address (addr-port-proto, svc-frontend-all-ports, svc-frontend-named-ports).
        frontend-mappings:
          type: array
          items:
            type: object
          description: Frontend to backend port mappings.
    Error:
      type: string
      description: Human-readable error message.
externalDocs:
  description: Cilium API Documentation
  url: https://docs.cilium.io/en/stable/api/