Crash Post Endpoints
The following documentation describes how customers can POST crashes directly to BugSplat via a suite of endpoints specific to their BugSplat database. It is important that all these crashes are uploaded via your BugSplat subdomain to ensure that they are not rejected by our backend.
post
https://{{database}}.bugsplat.com
/post/xbox/crash
Xbox
post
https://{{database}}.bugsplat.com
/post/ps4/crash
Playstation 4
post
https://{{database}}.bugsplat.com
/post/ps5/crash
Playstation 5
post
{{database}}.bugsplat.com
/post/bp/crash/crashpad.php
Crashpad
The following is an example that uses curl to demonstrate posting a crash to BugSplat. Be sure to update the value of
{{database}}
with the value of your BugSplat database.curl --request POST 'https://{{database}}.bugsplat.com/post/xbox/crash' \
--form 'appName="my-xbox-crasher"' \
--form 'appVersion="1.0.0"' \
--form 'minidump=@"/path/to/minidump.dmp"'
Last modified 3mo ago