curl -X POST https://api.thinnest.ai/v2/sessions \
-H "Authorization: Bearer $THINNESTAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"agent_id": "ag_xyz789"
}'
POST /v2/sessions
Request Body
{
"agent_id": "ag_xyz789"
}
Response
{
"id": "sess_abc123",
"agent_id": "ag_xyz789",
"status": "active",
"message_count": 0,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:00:00Z"
}

