List Streaming Session History

GEThttps://api.konpro.ai/v1/streaming/sessions

Retrieve a paginated history of all streaming sessions, including detailed metadata such as session duration, status, timestamps, and related avatar and voice information.

Request History

Log in to see full request history

TIMESTATUSUSER AGENT
Make a request to see history.

0 Requests This Month

Query Parameters

ParameterTypeDescription
pageintegerPage number for pagination. Default is 1.
page_sizeintegerNumber of sessions per page. Default is 10.
date_fromstringStart date/time filter in ISO format (YYYY-MM-DDTHH:MM:ssZ).
date_tostringEnd date/time filter in ISO format.
statusstringFilter sessions by status (new, connecting, connected).
tokenstringPagination token to retrieve the next set of results.

Response Structure

FieldTypeDescription
totalnumberTotal number of sessions available
pagenumberCurrent page number
page_sizenumberNumber of sessions returned per page
next_pagination_tokenstringToken to fetch the next page of results; null if none left
dataarrayArray of session objects

Each session object contains:

FieldTypeDescription
session_idstringUnique session identifier
statusstringCurrent or final status (new, connecting, connected)
created_atnumberUnix timestamp of session start
api_key_typestringType of API key used
durationnumberSession duration in seconds
avatar_idstringAvatar identifier used in session
voice_namestringVoice name used during session

cURL Request

shell
curl --request GET \
--url 'https://api.konpro.ai/v1/streaming/sessions?page=1&page_size=10' \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'

LANGUAGE

CREDENTIALS

HEADER

RESPONSE

Examples

Choose an example:

application/json
200 - Success
400 - Bad Request