Get Session

Get details of a session by ID

Headers

Path parameters

Request

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

Response

{
"result": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"title": "string",
"context": {
"chain_ids": [
"1",
"137"
],
"wallet_address": "0x..."
},
"history": [
{}
],
"account_id": "string",
"model_name": "string",
"is_public": true,
"memory": [
{}
],
"action": [
{}
],
"archive_at": "2025-01-08T17:22:45.016Z",
"deleted_at": "2025-01-08T17:22:45.016Z",
"created_at": "2025-01-08T17:22:45.016Z",
"updated_at": "2025-01-08T17:22:45.016Z"
}
}