List a Project's Events
Return a list of events bound to a project.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the groups belong to.
project_slug
(string)REQUIREDThe slug of the project the groups belong to.
Query Parameters:
full
(boolean)If this is set to true then the event payload will include the full event body, including the stacktrace. Set to true to enable.
cursor
(string)A pointer to the last object fetched and its' sort order; used to retrieve the next or previous results.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:project:read
GET /api/0/projects/{organization_slug}/{project_slug}/events/
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/events/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"eventID": "9fac2ceed9344f2bbfdd1fdacb0ed9b1",
"tags": [
{
"key": "browser",
"value": "Chrome 60.0"
},
{
"key": "device",
"value": "Other"
},
{
"key": "environment",
"value": "production"
},
{
"value": "fatal",
"key": "level"
},
{
"key": "os",
"value": "Mac OS X 10.12.6"
},
{
"value": "CPython 2.7.16",
"key": "runtime"
},
{
"key": "release",
"value": "17642328ead24b51867165985996d04b29310337"
},
{
"key": "server_name",
"value": "web1.example.com"
}
],
"dateCreated": "2020-09-11T17:46:36Z",
"user": null,
"message": "",
"title": "This is an example Python exception",
"id": "dfb1a2d057194e76a4186cc8a5271553",
"platform": "python",
"event.type": "error",
"groupID": "1889724436"
}
]