Skip to main content
GET
/
api
/
bots
/
{botID}
Get bot
curl --request GET \
  --url http://localhost:8091/api/bots/{botID} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "username": "<string>",
    "displayName": "<string>",
    "status": "<string>",
    "bot": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "avatarPath": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Session token obtained from /api/auth/login or /api/auth/register. Pass as: Authorization: Bearer

Path Parameters

botID
string
required

Bot user ID

Response

200 - application/json

Bot details

data
object