> ## Documentation Index
> Fetch the complete documentation index at: https://openapi.webhookx.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Responds a specific pprof profile



## OpenAPI

````yaml https://raw.githubusercontent.com/webhookx-io/webhookx/refs/heads/main/openapi.yml get /debug/pprof/{profile}
openapi: 3.0.3
info:
  title: WebhookX Admin API
  contact:
    name: WebhookX
    url: https://github.com/webhookx-io/webhookx
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.1
servers:
  - url: http://localhost:9601
security: []
paths:
  /debug/pprof/{profile}:
    get:
      tags:
        - Debug
      summary: Responds a specific pprof profile
      parameters:
        - in: path
          name: profile
          required: true
          schema:
            type: string
            enum:
              - allocs
              - block
              - goroutine
              - heap
              - mutex
              - threadcreate
              - cmdline
              - symbol
              - profile
              - trace
      responses:
        '200':
          description: OK

````