---
updatedAt: 2026-05-21T05:40:31.000Z
---

Fetch the complete documentation index at: https://docs.blockdaemon.com/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Get specific pprof profile

Returns a specific pprof profile

# OpenAPI definition

```json
{
  "openapi": "3.0.3",
  "info": {
    "title": "Sepior Threshold Security Module (TSM) Management API",
    "description": "Management API for the Threshold Security Module (TSM).\n\nThis API provides endpoints for monitoring and managing TSM nodes, including\nhealth checks, metrics, API key management, and authentication configuration.\n",
    "version": "1.0.0",
    "contact": {
      "name": "Blockdaemon/Sepior Support",
      "url": "https://blockdaemon.com/"
    },
    "license": {
      "name": "Proprietary"
    }
  },
  "servers": [
    {
      "url": "{server}",
      "description": "TSM Management API Server",
      "variables": {
        "server": {
          "default": "https://localhost:8080",
          "description": "Server URL"
        }
      }
    }
  ],
  "tags": [
    {
      "name": "Profiling",
      "description": "Application profiling operations"
    }
  ],
  "paths": {
    "/management/profiling/debug/pprof/{profile}": {
      "get": {
        "summary": "Get specific pprof profile",
        "description": "Returns a specific pprof profile",
        "operationId": "getPProfProfile",
        "tags": [
          "Profiling"
        ],
        "parameters": [
          {
            "name": "profile",
            "in": "path",
            "description": "Name of the profile to retrieve",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "allocs",
                "block",
                "cmdline",
                "goroutine",
                "heap",
                "mutex",
                "profile",
                "threadcreate",
                "trace"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/octet-stream": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "$ref": "#/components/responses/NotFound"
          },
          "500": {
            "$ref": "#/components/responses/InternalServerError"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Error": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Error code"
          },
          "message": {
            "type": "string",
            "description": "Error message"
          },
          "details": {
            "type": "object",
            "description": "Additional error details"
          }
        },
        "required": [
          "code",
          "message"
        ]
      }
    },
    "responses": {
      "NotFound": {
        "description": "Resource not found",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Error"
            }
          }
        }
      },
      "InternalServerError": {
        "description": "Internal server error",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Error"
            }
          }
        }
      }
    },
    "securitySchemes": {
      "APIKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "X-API-Key"
      }
    }
  },
  "security": [
    {
      "APIKeyAuth": []
    }
  ],
  "x-readme": {
    "explorer-enabled": true,
    "proxy-enabled": true
  }
}
```