Skip to main content
GET
Error

Authorizations

Authorization
string
header
required

Management API authentication for /api/* endpoints. Use the Authorization header with Bearer <token>, where <token> is one of:

  • a Bifrost management API key,
  • a dashboard session token issued by POST /api/session/login,
  • base64 of <admin-username>:<admin-password> (legacy equivalent of BasicAuth).

Virtual keys (sk-bf-*) and the x-api-key header are not accepted on management APIs - the sole exception is GET /api/governance/virtual-keys/quota, which is virtual-key-only.

Path Parameters

session_id
string
required

Parent request ID identifying the session

Query Parameters

limit
integer
default:200

Number of logs to return (default 200, max 200)

Required range: x <= 200
offset
integer
default:0

Number of logs to skip

order
enum<string>
default:asc

Sort order (default asc)

Available options:
asc,
desc

Response

Session logs retrieved successfully

Paginated logs for a single parent-request session

session_id
string
logs
object[]
pagination
object

Pagination metadata. Session logs are always sorted by timestamp; the sort_by field is not configurable.

count
integer<int64>

Total log count for this session

returned_count
integer

Number of logs returned in this response

has_more
boolean