Skip to main content
GET
/
v1
/
portal
/
match
/
statistics
curl https://portal-api.7331.org/v1/portal/match/statistics \
  -b "psession=YOUR_SESSION"
{
  "online": 42,
  "tags": [
    { "tag": "gaming", "count": 8 },
    { "tag": "music",  "count": 5 },
    { "tag": "anime",  "count": 3 },
    { "tag": "random", "count": 2 },
    { "tag": "tech",   "count": 1 }
  ]
}

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.

Returns the number of users currently connected to the portal and the top 5 interest tags sorted by live queue depth. Useful for surfacing trending topics in the matchmaking UI. Requires a registered session (psession cookie). Stranger sessions receive 401.

Response

online
integer
required
Number of users currently connected to the portal.
tags
object[]
required
Top interest tags by current queue depth (up to 5). Each entry contains:
  • tag (string) — Interest tag name
  • count (integer) — Number of users currently queued on this tag
curl https://portal-api.7331.org/v1/portal/match/statistics \
  -b "psession=YOUR_SESSION"
{
  "online": 42,
  "tags": [
    { "tag": "gaming", "count": 8 },
    { "tag": "music",  "count": 5 },
    { "tag": "anime",  "count": 3 },
    { "tag": "random", "count": 2 },
    { "tag": "tech",   "count": 1 }
  ]
}