Rensei docs
API ReferenceSessions ( Public)

Get Sentry issues linked to a session

Returns up to 25 Sentry issues correlated with this session via the session's time range and associated project. Returns `{ configured: false, issues: [] }` when the org has no Sentry connection rather than erroring. The session must belong to the authenticated org.

GET
/api/public/sessions/{id}/sentry-errors

Authorization

AuthorizationBearer <token>

Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.

In: header

Path Parameters

id*string

Session ID (raw trackerSessionId or 16-char public hash).

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/public/sessions/string/sentry-errors"
{
  "configured": true,
  "issues": [
    {}
  ]
}
{
  "error": "Session not found"
}
{
  "error": "Session not found"
}