List Sessions

Fetches a list of all available sessions.

Headers

Request

GET
/session/list
fetch("https://nebula-api.thirdweb.com/session/list", {
method: "GET",
headers: {
"x-secret-key": "YOUR_THIRDWEB_SECRET_KEY",
},
});

Response

{
"result": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"title": "string",
"created_at": "2025-01-08T10:52:40.293Z",
"updated_at": "2025-01-08T10:52:40.293Z"
}
]
}