List Sessions

Retrieve available sessions for the authenticated account.

GET /session/list

Example curl:

curl -X GET https://nebula-api.thirdweb.com/session/list \
-H "x-secret-key: YOUR_THIRDWEB_SECRET_KEY"

Response:

{
"result": [
{
"id": "string",
"title": "string",
"model_name": "string",
"is_public": boolean,
"created_at": "datetime",
"updated_at": "datetime"
}
]
}