Crash Post Endpoints
Most crash uploads to BugSplat are done via pre-signed URLs. However, some platforms do not support uploading via pre-signed URLs. The following documentation describes how customers can POST crashes directly to BugSplat via a suite of endpoints specific to their BugSplat database.
All these crashes must be uploaded via your BugSplat subdomain (e.g., https://your-database.bugsplat.com) to ensure that our backend accepts them.
PlayStation 4
POST
https://{{database}}.bugsplat.com/post/ps4/crash
Uploads a Playstation 4 crash report, extracts user data and user files
Path Parameters
{{database}}*
string
Replace the subdomain value with the value of your BugSplat database
Request Body
corefile*
object
The core dump file to be uploaded
application*
string
Name of the crashing application.
IMPORTANT
this value must match the value used to upload symbols.
version*
string
Crashing application's version.
IMPORTANT
this value must match the value used to upload symbols
PlayStation 5
POST
https://{{database}}.bugsplat.com/post/ps5/crash
Uploads a Playstation 5 crash report, extracts user data and user files
Path Parameters
{{database}}*
string
Replace the subdomain value with the value of your BugSplat database
Request Body
corefile*
object
The core dump file to be uploaded
application*
string
Name of the crashing application.
IMPORTANT
this value must match the value used to upload symbols.
version*
string
Crashing application's version.
IMPORTANT
this value must match the value used to upload symbols
Crashpad
POST
https://{{database}}.bugsplat.com/post/bp/crash/crashpad.php
Uploads a Crashpad crash report with optional metadata.
Path Parameters
{{database}}*
String
Replace the subdomain value with the name of your BugSplat database
Request Body
upload_file_minidump*
FILE
File POST parameter. This file can optionally be zip compressed.
other files
FILE
Any additional file POSTs will be attached to the crash report.
product*
String
Application name
version*
String
Application version
key
String
BugSplat crash key
user
String
User reporting the crash
list_annotations
String
User description of the problem
String
XML
POST
{{database}}.bugsplat.com/post/xml/index.php
Uploads an XML crash report and can be used to create reports for languages and platforms not directly supported by BugSplat.
Path Parameters
{{database}}*
String
Replace the subdomain value with the name of your BugSplat database
Request Body
file*
FILE
XML file containing crash report. File name must be bsCrashReport.xml
other files
FILE
Any additional file POSTs will be attached to the crash report.
appName*
String
Application name
appVersion*
String
Application version
appKey
String
BugSplat crash key
user
String
User reporting the crash
String
Email of user
description
String
User description of the problem
ipAddress
String
IP Address of machine generating report
notes
string
Arbitrary additional data about the crash report
Example XML File
Last updated