Skip to main content
GET
/
api
/
bots
List my bots
curl --request GET \
  --url http://localhost:8091/api/bots \
  --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

Response

200 - application/json

Bots list

data
object[]