Skip to main content
GET
/
api
/
v1
/
sessions
/
{session_id}
/
results
Get session results
curl --request GET \
  --url https://api.example.com/api/v1/sessions/{session_id}/results \
  --header 'Authorization: Bearer <token>'
{
  "session_id": "<string>",
  "total_results": 123,
  "results": [
    {}
  ],
  "columns": [
    "<string>"
  ],
  "metadata": {}
}

Documentation Index

Fetch the complete documentation index at: https://bavlio.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

session_id
string
required

Query Parameters

limit
integer | null

Response

Successful Response

Response model for session results.

session_id
string
required

Session identifier

total_results
integer
required

Total number of results

results
Results · object[]
required

Processing results

columns
string[] | null

Column order from dataset schema (for display ordering)

metadata
Metadata · object

Dataset metadata for display (name, label, source)