Base URL
https://stemcell.nrl.ai
Authentication
Auth Endpoints
POST
/api/auth/sign-in/socialGoogle OAuth sign-in
GET
/api/auth/get-sessionGet current session
POST
/api/auth/sign-outSign out user
🔒 Auth RequiredBots
Bot Management
GET
/api/botsList user's bots
🔒 Auth RequiredPOST
/api/botsCreate new bot
🔒 Auth RequiredGET
/api/bots/:idGet bot details
🔒 Auth RequiredPATCH
/api/bots/:idUpdate bot
🔒 Auth RequiredDELETE
/api/bots/:idDelete bot
🔒 Auth RequiredDevices
Device Management
GET
/api/devicesList user's devices
🔒 Auth RequiredPOST
/api/devicesRegister new device
🔒 Auth RequiredPATCH
/api/devices/:idUpdate device
🔒 Auth RequiredTools
Tool Management
GET
/api/toolsList available tools
🔒 Auth RequiredPOST
/api/toolsCreate new tool
🔒 Auth RequiredGET
/api/tools/:idGet tool details
🔒 Auth RequiredDELETE
/api/tools/:idDelete tool
🔒 Auth RequiredExample Request
Create Bot
POST /api/bots
Content-Type: application/json
{
"name": "My Robot Assistant",
"description": "A helpful robot assistant",
"llmModel": "gemini-2.0-flash-exp",
"systemPrompt": "You are a helpful assistant",
"isActive": true
}Response
{
"bot": {
"id": "bot_123",
"name": "My Robot Assistant",
"description": "A helpful robot assistant",
"llmModel": "gemini-2.0-flash-exp",
"isActive": true,
"createdAt": "2026-01-10T12:00:00Z"
}
}