Guilded Client
  1. Teams
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
    • Get Team Info
      GET
    • Get Shallow Search Results
      GET
    • Submit Deep Search Query
      GET
    • Check Subdomain
      GET
    • Look up Teams
      GET
    • Check Team Name
      GET
  • Members
    • Get Team Members
    • Detail Team Members
    • Detail Voice Members
    • Sort Member IDs
    • Detail Team Bots
  • Channels
    • Get Team Channels
    • Get Team Channel
    • Get Group Archived Channels
    • Get Thread
    • Get Channel Threads
    • Get Channel Thread Count
    • Get Voice Channel Groups
  • 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. Teams

Check Subdomain

GET
/subdomains/{subdomain}
teamsusers
Check if a given subdomain is taken. Despite their name, "subdomain" does not refer to a record at {subdomain}.guilded.gg, but rather a vanity URL-type appendage to the main domain: www.guilded.gg/{subdomain}. These subdomains can belong to teams or user profiles.
This endpoint will give false-negative responses for the following "reserved" subdomains that cannot actually be used:
about
activity
admin
api
asset
attribution
blog
brand
contact
create
discord-bots
docs
download
downloads
games
guilded
job
jobs
join
libs
license
menu
news
partners
PressKit.zip
privacy
recruiting
rss
support
teams
terms
tournament
tournaments
verify

Request

Path Params
subdomain
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/subdomains/'

Responses

🟢200In the event that the given subdomain does not exist, `{}` is returned.
application/json
Body
exists
boolean 
optional
Whether the subdomain exists
Default:
false
teamId
string 
optional
The ID of the team that the subdomain is for
userId
string 
optional
The ID of the user that the subdomain is for
Example
{
    "exists": false,
    "teamId": "string",
    "userId": "string"
}
Modified at 2024-06-10 14:16:22
Previous
Submit Deep Search Query
Next
Look up Teams
Built with