provider live_debugger_breakpoints GET
/api/projects/{project_id}/live_debugger_breakpoints/breakpoint_hits/ @utdk/posthog
/api/projects/{project_id}/live_debugger_breakpoints/breakpoint_hits/ Get breakpoint hits
Retrieve breakpoint hit events from ClickHouse with optional filtering and pagination. Returns hit events containing stack traces, local variables, and execution context from your application's runtime.
Security: Breakpoint IDs are filtered to only include those belonging to the current team.
- breakpoint_ids query
- Filter hits for specific breakpoints (repeat parameter for multiple IDs, e.g., ?breakpoint_ids=uuid1&breakpoint_ids=uuid2)
- string
- limit query
- Number of hits to return (default: 100, max: 1000)
- integer
- offset query
- Pagination offset for retrieving additional results (default: 0)
- integer
- project_id path required
- Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- string
Try it
Authentication
Configure credentials for PostHog API
Code snippet
Updates live as you fill in the form above.
TypeScript
import posthog from '@utdk/posthog';
await posthog.liveDebuggerBreakpointsBreakpointHitsRetrieve()