BFE

BFE Debug API

Go pprof debugging and profiling endpoints

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/bfe-debug-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

bfe-debug-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: BFE Management Debug API
  description: The BFE (Beyond Front End) Management API provides internal monitoring, configuration reload, and profiling endpoints for the BFE open-source layer 7 load balancer. This API should only be exposed on internal networks and never publicly accessible.
  version: v1
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  contact:
    name: BFE Community
    url: https://github.com/bfenetworks/bfe
  x-generated-from: documentation
servers:
- url: http://localhost:8421
  description: BFE Management API (internal only, default port 8421)
tags:
- name: Debug
  description: Go pprof debugging and profiling endpoints
paths:
  /debug/pprof/:
    get:
      operationId: getPprofIndex
      summary: BFE Get Pprof Index
      description: Returns the Go pprof profiling index page.
      tags:
      - Debug
      responses:
        '200':
          description: Pprof index page.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /debug/cmdline:
    get:
      operationId: getCommandLine
      summary: BFE Get Command Line
      description: Returns the command line arguments used to start BFE.
      tags:
      - Debug
      responses:
        '200':
          description: Command line information.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /debug/profile:
    get:
      operationId: getCpuProfile
      summary: BFE Get CPU Profile
      description: Generates and returns a CPU profiling report.
      tags:
      - Debug
      parameters:
      - name: seconds
        in: query
        description: Duration in seconds for CPU profiling.
        required: false
        schema:
          type: integer
          default: 30
        example: 30
      responses:
        '200':
          description: CPU profile data in pprof format.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK