curl --request GET \
--url https://api.example.com/rooms/code/:code{
"401": {},
"404": {},
"id": "<string>",
"code": "<string>",
"name": "<string>",
"isActive": true,
"isLocked": true,
"host": {
"id": "<string>",
"displayName": "<string>",
"avatarUrl": "<string>"
},
"settings": {
"waitingRoom": true
}
}curl --request GET \
--url https://api.example.com/rooms/code/:code{
"401": {},
"404": {},
"id": "<string>",
"code": "<string>",
"name": "<string>",
"isActive": true,
"isLocked": true,
"host": {
"id": "<string>",
"displayName": "<string>",
"avatarUrl": "<string>"
},
"settings": {
"waitingRoom": true
}
}curl https://api.neuronmeet.com/rooms/code/abc-def-ghi
{
"id": "clx1a2b3c4d5e6f7g8h9i0j",
"code": "abc-def-ghi",
"name": "Team Standup",
"isActive": true,
"isLocked": false,
"host": {
"id": "clx0a1b2c3d4e5f6g7h8i9j",
"displayName": "John Doe",
"avatarUrl": "https://example.com/avatar.jpg"
},
"settings": {
"waitingRoom": true
}
}
GET /rooms/:id
curl https://api.neuronmeet.com/rooms/clx1a2b3c4d5e6f7g8h9i0j \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"id": "clx1a2b3c4d5e6f7g8h9i0j",
"code": "abc-def-ghi",
"name": "Team Standup",
"hostId": "clx0a1b2c3d4e5f6g7h8i9j",
"isActive": true,
"isLocked": false,
"startedAt": "2026-03-03T10:30:00.000Z",
"endedAt": null,
"createdAt": "2026-03-03T10:30:00.000Z",
"updatedAt": "2026-03-03T10:30:00.000Z",
"host": {
"id": "clx0a1b2c3d4e5f6g7h8i9j",
"displayName": "John Doe",
"avatarUrl": "https://example.com/avatar.jpg"
},
"settings": {
"id": "clx2a3b4c5d6e7f8g9h0i1j",
"roomId": "clx1a2b3c4d5e6f7g8h9i0j",
"allowChat": true,
"allowScreenShare": true,
"allowGuestAccess": true,
"waitingRoom": true,
"muteParticipantsOnJoin": false,
"maxParticipants": 10
}
}
GET /rooms/:id/participants
GET /rooms/code/:code/participants
curl https://api.neuronmeet.com/rooms/code/abc-def-ghi/participants
[
{
"id": "clx3a4b5c6d7e8f9g0h1i2j",
"displayName": "John Doe",
"avatarUrl": "https://example.com/avatar.jpg",
"isHost": true
},
{
"id": "clx4a5b6c7d8e9f0g1h2i3j",
"displayName": "Jane Smith",
"avatarUrl": null,
"isHost": false
}
]
{
"statusCode": 404,
"message": "Room not found"
}