Skip to main content
GET
/
v1
/
admin
/
chats
/
{chat_id}
Get Chat Detail
curl --request GET \
  --url https://portal-api.7331.org/v1/admin/chats/{chat_id}
{
  "id": 1,
  "name": "main-lobby",
  "owner_id": 1,
  "is_public": true,
  "visibility": "official",
  "label": null,
  "slug": "main-lobby",
  "description": "Main lobby chat",
  "avatar_source": null,
  "last_activity_at": "2026-03-14T12:00:00Z",
  "browser_config": {"browser": "firefox", "start_url": null, "kiosk": false},
  "member_count": 1,
  "members": [
    {
      "user": {"id": 2, "username": "alice", "avatar_url": null, "permission_level": 0},
      "is_online": true,
      "joined_at": "2026-03-10T08:00:00Z"
    }
  ],
  "created_at": "2026-03-01T00:00:00Z",
  "updated_at": "2026-03-14T12:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.7331.org/llms.txt

Use this file to discover all available pages before exploring further.

Requires Admin or higher permission level.

Path Parameters

chat_id
integer
required
Chat ID

Response

id
integer
Chat ID
name
string
Chat display name
owner_id
integer
Owner user ID
is_public
boolean
Whether visible to everyone — true for official and public chats.
visibility
string
Chat visibility: "official", "public", or "private".
label
string | null
Platform endorsement label.
slug
string | null
Vanity slug (present on official and public chats).
description
string | null
Chat description.
avatar_source
string | null
Avatar key (e.g. "discord_0").
last_activity_at
string
ISO 8601 timestamp of last activity
browser_config
object
Neko container configuration (browser, start_url, kiosk)
member_count
integer
Number of members (excluding owner)
members
array
Chat members with online status.
created_at
string
ISO 8601 creation timestamp
updated_at
string
ISO 8601 last-updated timestamp
{
  "id": 1,
  "name": "main-lobby",
  "owner_id": 1,
  "is_public": true,
  "visibility": "official",
  "label": null,
  "slug": "main-lobby",
  "description": "Main lobby chat",
  "avatar_source": null,
  "last_activity_at": "2026-03-14T12:00:00Z",
  "browser_config": {"browser": "firefox", "start_url": null, "kiosk": false},
  "member_count": 1,
  "members": [
    {
      "user": {"id": 2, "username": "alice", "avatar_url": null, "permission_level": 0},
      "is_online": true,
      "joined_at": "2026-03-10T08:00:00Z"
    }
  ],
  "created_at": "2026-03-01T00:00:00Z",
  "updated_at": "2026-03-14T12:00:00Z"
}