BugSnag: Get Event Details From Dashboard URL
bugsnag_get_event_details_from_dashboard_urlExtract complete event details, including stack trace and metadata, from a BugSnag dashboard URL for quick troubleshooting.
Instructions
Get detailed information about a specific event using its dashboard URL
Toolset: Events
Parameters:
link (string) required: Full URL to the event details page in the BugSnag dashboard (web interface), containing project slug and event_id parameter.
Use Cases: 1. Get event details when given a dashboard URL from a user or notification 2. Extract event information from shared links or browser URLs 3. Quick lookup of event details without needing separate project and event IDs
Examples:
Get event details from a dashboard URL
{
"link": "https://app.bugsnag.com/my-org/my-project/errors/6863e2af8c857c0a5023b411?event_id=6863e2af012caf1d5c320000"
}Expected Output: JSON object with complete event details including stack trace, metadata, and context
Hints: 1. The URL must contain both project slug in the path and event_id in query parameters 2. This is useful when users share BugSnag dashboard URLs and you need to extract the event data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| link | Yes | Full URL to the event details page in the BugSnag dashboard (web interface), containing project slug and event_id parameter. |