Guilded Client
  1. Channels
Guilded Client
  • Intro
  • Community Libraries
  • Permissions Values
  • Reference
  • Webhooks
  • Chat
    • Get Embed for URL
      GET
    • Get Metadata
      GET
    • Get Channel Messages
      GET
    • Get Pinned Messages
      GET
  • List Items
    • Get List Items
      GET
    • Get List Item Note
      GET
  • Users
    • Modify User
      GET
    • Get Current User Verification
      GET
    • Send Verification Email
      POST
    • Verify Email Address
      GET
    • Get User Owned Steam Apps
      GET
    • Get User
      GET
    • Get User Profile
      GET
    • Get User Profile Posts
      GET
    • Get User Profile Post
      GET
    • Check Email Address
      GET
  • Teams
    • Get Team Presences
    • Get Team Info
    • Get Shallow Search Results
    • Submit Deep Search Query
    • Check Subdomain
    • Look up Teams
    • Check Team Name
  • Members
    • Get Team Members
    • Detail Team Members
    • Detail Voice Members
    • Sort Member IDs
    • Detail Team Bots
  • Channels
    • Get Team Channels
      GET
    • Get Team Channel
      GET
    • Get Group Archived Channels
      GET
    • Get Thread
      GET
    • Get Channel Threads
      GET
    • Get Channel Thread Count
      GET
    • Get Voice Channel Groups
      GET
  • Webhooks
    • Get Channel Webhooks
    • Execute Webhook
  • Guilded Meta
    • Redirect to App
    • Get App QR
  • Tournaments
    • Get Tournaments
    • Get Tournament
    • Get Tournament Info
    • Get Tournament Any Bracket Confirmed
    • Get Tournament from Invite
    • Get Tournament Hash Invites
    • Get Tournament Bracket Matches
    • Get Upcoming Tournaments
    • Get Completed Tournaments
    • Get Featured Tournaments
  • Websocket
    • Websocket
  1. Channels

Get Channel Thread Count

GET
/channels/{channelId}/threads/count
channels
Get the thread measurements of the channel. If channelId is a thread ID, this endpoint functions as though the top-most parent channel was provided instead.

Request

Path Params
channelId
string 
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://www.guilded.gg/api/channels//threads/count'

Responses

🟢200Success
application/json
Body
archived
integer 
required
The number of archived threads in the channel
active
integer 
required
The number of active threads in the channel
total
integer 
required
The total number of threads in the channel
Example
{
    "archived": 3186,
    "active": 2,
    "total": 3188
}
🟠404Channel not found
Modified at 2024-06-10 14:16:22
Previous
Get Channel Threads
Next
Get Voice Channel Groups
Built with