#support
1 messages · Page 109 of 1
Discord Servers
You can add your server here!
Please make sure to read our server guidelines.
Is your server locked? Open a #staff-tickets.
we have new guidelines
it's not been there for years actually servers were gone for a long time
well its been there since i started my server with no issue until now but new guidelines could explain it
and its been years
alr nws, should check new guidelines and make changes accordingly anyway
ok so when i go to edit i get a 404
not from your link but the edit link i used form my page 404'd
yea i think that's using a different id, i will report internally ty
so if im reading right just the mention of 18+ blah blah blah is the guideline breaker?
anything nsfw
so basically my server is forked....
Will having commands like /counting leaderboard which shows servers that have the highest count in their counting channel on my bot get me denied? Am I not allowed to display the names of servers in leaderboards like that?
No, you cannot display the name of the servers.
that counts as a privacy breach. Unless the server opts-in to displaying their name
I assume you can't have users displayed on a user leaderboard then either?
Hey, i have a question related to servers. Is there any possibility to lower the requirements of 500 characters in long description if it is a support server for bot? 😕
users consent to being shown in the bot on a leaderboard by running a command. so as long as they are aware theyre using a bot, then that would b e fine
the minimum should be set to 300, not 500 
sadly not 
i don't have proof from before so let's consider it as my fault and resolved, sorry for wasting your time 
both bots and servers should be 300 characters. if its a support server for a bot though, feel free to write information about the bot itself as well
good point indeed, i just don't want to write anything that would be a spam about it 😅
@wet berrywe dont allow that here thanks
The only bad thing is that it's in another account, but can I do it anyway?
do you have access to the bot?
you can only edit the bot if you're the owner or part of a team
Yes
that's fine then
sure, thanks a lot!
np
I actually lost count of having it 😩
?
I lost track of where it was on the developer portal
what do you want to edit
queria editar o avatar, nome, título e descrição do bot no top.gg
bot id?
I can't get it either, I just remember it's the one in the photo
wait
980042744640716830 @lone ether
Hey, sorry to bother you again but could you check what is the 543757461358845968 ? It appears (in the website link field) when i'm trying to edit server but it's not previous server id nor the new one i updated the invite to 🤔
when you want to edit your server, just add /edit to the link from the servers main page
But will I be able to make my commands with the requirement to vote for him?
even not that bot there
you'll need access to the bots code for that, unrelated to topgg
previous server id was 723232457696083978, the current one 1243927219089313915 but im seeing this 543757461358845968
even if im trying, to add the edit i can't 😦
Heya! Is it normal that I am unable to view my Bot’s Analytics? Each time when I click on that button, nothing happens. Every other Button works. I already tried to view my Analytics from Phone & from PC and neither works.
I would appreciate some help, thank you!
can you send the server's topgg link please
i think that's broken atm
you can transfer ownership if you have access to the bot from the dev portal
alright thank you
https://top.gg/discord/servers/543757461358845968/edit this doesnt work?
this one work but im not sure why the id is incorrect 😦
oh so it doesn't work like before when we could paste the actual server id to the topgg link...
understood, also thank you for your patience, kindness, help and your time 
np! if you need any more help feel free to ask
Wasn't servers removed?
Oh, I don't have access, but I appreciate your patience and understanding so far. I think it's better to wait for mine to be accepted 🥲
do you have access to the bot's code?
e.g. can you change the bot's status, etc
they're back, soft launch
Do reviewers join the server to review it? What do they review? Also, am I able to kick top.gg bot after the review or is it necessary to keep it on the server?
They are asking about their server
Recently top.gg brought back to life the server list
I had applied to list my bot on Top.gg, but it's been a long time and it still hasn't been accepted or reviewed yet.
What period of time do you mean by "long time"
Around 2-3 weeks
you submitted it on the 20th of april, but it seems you have deleted it since. You will need to re-submit your bot if you are wanting it to be reviewed
We do not join the server to review it. The review is based on your server's top.gg page
how would i go about doing that exactly? nevermind, I figured out the html/css part.
so it looks like I can't update the long description at all before the bot is reviewed?
I edit the long description and save, and even if i refresh the page the edits persist. But when i preview the bot's page it still shows the original long description rather than the edited one that I have saved.
you can
-upto
@echo pumice
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
previews don't work iirc
well that's frustrating, is there anything i can do to make the preview work?
just save your changes and go back to the main page to see them applied
they update instantly so any changes you make can be reverted fast
but the main page just tells me it's a preview?
when you save the changes, go to the main page to check it out, don't click on the preview button @ornate vault
aha, that did the trick. thanks!
also, is there any easy way to change the color scheme? for example replacing the pink with another highlight color?
I'm wary about heavy modifications because that seems like it would break whenever the website is updated.
without css modifications no
I'm asking about with css modifications.
yes you can
how would i do so?
something like this i presume? https://top.gg/bot/1342097902524432394
what are you trying to edit? which pink and where?
oh that's exactly what i wanted to do, although it has additional changes i'm not interested in
thanks
np
okay here's an example, I want to change the --color-brand-20 variable to alter this:
I tried adding this to the long description:```html
<style>
::root {
--color-brand-20: #57E1FF33;
}
</style>
nevermind, just needed to use :host, :root instead of ::root. man this is so much nicer than that one you linked... feels great to change variables instead of actual css.
although i wonder if there's a way to add opacity to a variable, that way i only need to set the color once and the rest are variables based on it
rgba
red green blue alpha
rgba(r, g, b, a)
I ended up figuring it out, gonna share what I did in case anyone else ever wants to do this and is searching the message history:```css
:host, :root {
--color-brand: #57E1FF;
--color-brand-100: var(--color-brand);
--color-brand-80: color-mix(in srgb, var(--color-brand) 80%, transparent);
--color-brand-60: color-mix(in srgb, var(--color-brand) 60%, transparent);
--color-brand-40: color-mix(in srgb, var(--color-brand) 40%, transparent);
--color-brand-20: color-mix(in srgb, var(--color-brand) 20%, transparent);
--color-brand-10: color-mix(in srgb, var(--color-brand) 10%, transparent);
--color-brand-5: color-mix(in srgb, var(--color-brand) 5%, transparent);
}
with this you just pick the base color and it updates the whole page
that's not what I meant, but thanks anyways
if you need further help with css, best to continue in #development
question if my server gets allowed on top top.gg will I have to keep the bot in the server?
You don't have to, but it's recommended to update your member count
okay good to know (also sorry for the late reply I was having to look at something that I am going to code during the week), thank you!
Heya, I was wondering if bots vote score ever resets? 🙂
Every month
Hey? i have an user that has an issue with voting, he’s unable to vote for some reason, he says that each time when he clicks voting, this issue occurs:
Is this issue on my side or on top.gg’s side? Since I tried voting and it worked flawless?
.ban @foggy wind 7 support scam
Banned geof.99
could you ask him to show a screenshot please
He’s a scam?😭
I just joined his server and am chatting with him now
Oops
leave immediately 
any topgg support is with us only
anyone with reviewer role and up
Alright😭 i thought he was just an user pointing out the support for top.gg for me
I didnt know damn
this is the only support channel or unless you need to chat with us privately, we have tickets
For reports, ownership transfers, or mod-related issues → open a ticket in #staff-tickets.
For auction issues or anything confidential (like emails/order IDs) → open a ticket in #auctions-tickets.
Need more advanced help? Head over to our support site online.
anyways, could you ask your user to share a screenshot of the error
Alright, thank you, i left the server, ill ask him to send a screenshot now (she just went offline rn, so this will take a while)

could you ask them to try these
Troubleshooting steps
Make sure you're logged in the correct Discord account on Discord web: https://discord.com/login. Then log in again at Top.gg.
Try these steps in order:
- Turn off ad blockers/VPNs and try again.
- Log out and log back in.
- Use a different browser (not Opera/Brave, they cause issues sometimes).
- Use incognito mode on any browser.
- Use a different device.
- Wait a few hours. If the issue persists, come back for more help!
I can tell them, also for the last step, this issue was first found yesterday
So its been a while already
i see, let me know if it still doesn't work after trying those
i'm assuming it's known that we can't update server count on our bots since apr 12th ish via the api
.ban @cyan forum 7 support scam
Banned jacos9274
yes, also i hope you didn't join that scam server

is there any ETA on when it'll be fixed?
not sure sorry, veld and the team are working on other things atm
also sorry i misread that i don't think server count is broken but let me check
thanks for the quick replies 💪
asked internally, will lyk when i get an answer
might want to share your code in #topgg-api, someone could help you out
hmm ok I'll check it out
I'm just looking at https://topstats.gg/discord/bots/815289915557675118 and my bot https://topstats.gg/discord/bots/467377486141980682 and they both stopped updating around that date
so I'm confused as to if this is my code or if it's something else
seems like I stumbled upon another bot that just stopped posting around the same time I guess, other bots on topstats.gg post
@lone ether btw I can confirm that a lot of bots have seemed to stop recieving count updates around the same date

are people who don't own bots able to report reviews now? It still doesnt appear for me (it hasn't in over a month) and somehow this review got reported? 
top review on this page https://top.gg/bot/853327905357561948
only bot owners can report reviews
if you're in a team, it doesn't work atm
but ill remove that review (just checked)
Okay thanks, I'm not sure who reported that because I haven't done it as the button has not appeared for me in over a month, are you able to check who reported it?
nope, can't see atm
okay np, thanks anyway 🙂
The issue persists, she also tried on different devices and it does not work. She said, I quote: ,, sometime i can load inside but after 2 s it becomes” like this picture below
She also got an error saying: ,,This website cannot provide a secure connection
top.gg sent an invalid response.
ERR_SSL_PROTOCOL_ERROR” when trying to access the site. She has no adblocker and has VPN offline, she said.
If I recall correctly, in past, it was working fine for her
can you ask her to clear the browser cache
unable to change bots wehbook the clicked save button 100 times and when i frefresh page it still gets back to old one
how do i update my bot's avatar on top gg, it's already updated on developer portal more than 24 hours ago
It's not automatic, you need to click "refresh data" button
aight thanks
the @small lantern bot updates the profile picture for you as well, you can invite it
Whats happening here? 👀, -100 reviews? (Ive not reported any)
mods go through reviews sometimes to check for ones that break guidelines
i went through some of yours last night when you reported one
ooh right, thank you for that. Much appreciated 🙂
np
@lone ether update, now I can’t even regenerate the secret token or edit anything in my bot page
._.
apparently this user got the same issue
How many months have we been waiting for problem to be resolved
what's your bot's id?
what problem?
496044007022133301
your bot's long description must have at least 300 characters, yours is below that right now. if you add more to your description, everything else will be fixed
Can you please check mine been 2 days already https://top.gg/bot/1280470680865079318
same issue. fix your bot description
so the description is related with wehbook?
it doesn't follow the validation, hence everything else will fail
https://top.gg/bot/1253873549689753602
Hi can you please check my bot for approve? It's been 2 or 3 weeks
hey! it has only been 12 days since you submitted your bot. Please be patient
it currently takes around 2 weeks, but this can be more depending on how busy our team is
Oh so sorry i thought it was 3 weeks ago
Votes reset at the beginning of each month 
Oh that's news to me, thank you! 
I can't seem to post a review
wtf is wrong with the stars?
you need to select a rating with the stars thats why you can't leave a review
what's the bot page link?
Bankify is an Economy bot with many methods to keep your chats alive with full customization! Did I forget to mention it has Gambling?
thanks
do your stars show up like that in all bot pages?
Yeah
interesting, what browser are you using?
Chrome
Need the version number?
does it show up like that on other browsers?
No
Ddin't always show up like that on Chrome either
can you go to your cookies and site data and clear topgg please
How do I do that?
Done
No
do you have any extensions interfering with the page?
@honest thistle can you try ctrl + f5 on the page please
What's that do?
hard refresh
you can google it if you want
I'm on Mac
It didn't do anything
this didnt work?
Sorry, I meant I hard refreshed, and the stars look the same
ah
cc @scarlet yacht hi any ideas what's going on here?
(see chat)
Hiii
yea, specifically I'd say this is the most important question that they haven't answered. my old ad block broke the top.gg page in many ways
A question: why is analytics not clickable? Is this happening for anyone else?
I've tried Chrome and Firefox
it is clickable it just takes a long time to load
takes like 30-60seconds for mine to load
TopGGAPIError: 404 Not Found anyone help me
Can we embed bots website using iframe in long description ?
Yes
But for some reason it dosen't work
<iframe src="" title=""></iframe>
Can anyone help me with this
what's the website
did you put it inside src="link"?
yes
its my bot's website
hasnt been approved yet just upload yesterday
miwi.pro
did you put https://miwi.pro/ or just miwi.pro
Miwi is a high-quality Discord music bot designed to enhance your server's experience with powerful music features, playlists, filters, and more.
hello! main chat is in #general, this is the support channel
Alright
Just checked the console, it was apparently a custom cursor extension (that I never use anymore because they got rid of a ton of skins) that caused some sort of error, I removed it and the stars were back to normal. Not sure why that extension would be causing it, but I guess ti updated
I'm getting this error. I solved it by making my bot public but the error remains? Should I just try again in a couple hours or am I missing something?
it can take an hour or so for discord's cache to update and send us the correct info
I updated my discord bot image, how long before seeing the changement on the website ? Plz 👴
- Go to your bot's main page (https://top.gg/bot/YOURBOTID).
- Click Refresh Data under Creator Controls. (Click Info tab if you're on phone).
- Refresh the page.
💡 Note: Ensure you changed the bot's avatar/name in the Discord Developer Portal, and not the app's icon/name.
tysm 🙏
@dense zodiac
This channel is for support/help with top.gg. It is not for general conversation (move to #general) or development support (move to #development). Please keep this channel on topic!
ah sorry
can anyone tell me how the command -botinfo id works?
is it like it only shows information of the bots which are listed on top.gg and approved
Yes
well my -botinfo id shows information about my bot
i have received no messages from luca about it being approved nor I saw any message in #mod-logs about my bot being approved
even in the top.gg it shows it's under verification
ah alright thanks
cool i just hope it gets fixed soon :)
nope it shows info of all the bots
i want help with the long description of my bot, i see bots have images on their descriptions, how to integrate images?
huh?
-htmldesc
@agile wraith
You can achieve this using Markdown or HTML in your bot's description. You can ask in #development for help or use this HTML and Markdown cheatsheet for more resources.
@agile wraith i hope you didn't dm the person who said "get help here" that was a support scam
ye ye thank god
thanks luca (ive been crazy talking to bots)
I'm the developer of a bot that's in queue to be tested. Once the bot get's up, how would the owner of the bot add me to the page?
hey can anyone help me out? the member count has been stuck at that for months. anything i do edit/refresh data/kick the bot etc when i refresh the data is says under review ?
My bot only uses slash commands x) should i just put / ?
yes ^^
Can someone help? I get this error message : "Your spending limit has been maxed out, please reach out to auctions support to get it increased."
they’re able to add you to a team which will give you access to the bot’s page as a team member
can you help me?
please see #auctions-faq , specifically #auctions-faq message
once my bid is active does that mean my ad is active? @normal narwhal
I'm on the team so I have access to the page then?
they need to set your permissions correctly
read up on this
What are Teams? Our Top.gg Teams feature enables multiple owners for communities and integrations on our site instead of a single owner. Today, these communities and integrations only include Discord Bots. The Teams feature provides bot owners w...
Asshole
If your bot is approved you can find it in the "Webhooks" tab
oh ok
Anyone is facing "you have already voted you can vote again in 12 hours" even when you try to vote after the 12 hours
My server has been under review since months , I think it has been forgotten, is there a way to fix this?
servers recently came back, all servers are getting re-reviewed
Alright thank you for the answer
np
@sturdy swan
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
is it okay if someone knows their bot joined the verification server? for review
One message removed from a suspended account.
alright
One message removed from a suspended account.
no like guild logs
One message removed from a suspended account.
and i am the owner and only I can see it
One message removed from a suspended account.
ah never
Would a bot tester be willing to help me confirm bot with ID 1265343375054340160 is infact in queue? I just want to double check
i was just my guild logs and saw the bot joined and then left.. so ye was just wondering if it's alright to know nothing else
didn't create any inv or smth :)
yes it's in queue
Thank you ❤️
that's fine
alright so if I am allowed to ask it means the review is already over for my bot..?
-notified @dense zodiac
@dense zodiac
Bot Review Notifications
If your bot is approved:
- You'll receive an email at the email linked to your Discord account.
- You'll be pinged in #mod-logs and you'll be assigned the <@&265125253443878912> role.
If your bot is declined:
- You'll receive an email at the email linked to your Discord account.
- You'll be pinged in #mod-logs.
💡 Note: If you didn't receive the <@&265125253443878912> role, please ask a Moderator to assign it to you!
oh okay
Hi can i ask a question
My bot declined because it's online on review
Can i do review without opening, like with old review?
*By talking with reviewer
you can just resubmit your bot on the site if the bot is online now @hexed vessel
Oh okay thank you so so so so much
np
halo so do you have a mod log for servers accept or decline like you have for bots
not currently, no. we do plan on adding something similar in the future
bots are tested in order of submission - it can take a few weeks right now, so please be patient 
Hi again i did it, do i need to wait 2 weeks or is it answered directly? Sorry for my bad English
yeah you need to wait for it to be reviewed again
Hello
Hi
please dm @gloomy shell
Is this why certain features from the website are gone like webhooks for example? Will they return when the server has been reviewed?
Like all of them ? That might be thousands applications, No wonder why the queue is so long
My server in a review state for quite a while so I just wait or any solution like you make it fast ?
1081945903834857544 server id
those work, your bot page must have something wrong that's why you can't create one
just wait in queue please
yes all of them
I'm asking for a friend so don't know all the details but i think it's about the actual server itself missing options on it's page, not the bot page
apparently there's supposed to be more?
on the left
that's all for now
So how does server, get webhooks? to show people have voted for your discord server?
like they use to.
servers are still being worked on, not everything is back atm
ah make sense. May I ask if you plan to bring something new?
or will webhooks and roles eventually come back
but thanks for answer our questions 🙂
i have no idea, that's a question for veld but it's the weekend so we wouldn't get an answer till monday
cool thanks.
-upto
@fair hound
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
Oki thanks
anybody know if the top.gg website just doesn't work for older devices?
getting this error for an iphone on ios 15.8.3
@glad temple
Troubleshooting steps
Make sure you're logged in the correct Discord account on Discord web: https://discord.com/login. Then log in again at Top.gg.
Try these steps in order:
- Turn off ad blockers/VPNs and try again.
- Log out and log back in.
- Use a different browser (not Opera/Brave, they cause issues sometimes).
- Use incognito mode on any browser.
- Use a different device.
- Wait a few hours. If the issue persists, come back for more help!
Doing that for a while now
.ban 1217935406184530131 7 spam
Banned asasyn__
can anyone just check if this bot is in the queue or not
1365702669162778725
why when i add <strong> to a text it becomes like this
i just added <strong> to the "Ticketing System" and the "Auto-Responses"
also i added <li> inside the <ul> and it doesn't show the *
-wrongserver
@agile wraith
Hey! This isn't the support server for that bot. Please use the "Discord Support Server" button on the bot's Top.gg page.
If there's no button, the invite is invalid, or you were banned, we can't help unfortunately. Sorry!
oops
If you go to https://top.gg/bot/BOT_ID, you'll see the status of the submission. Replace BOT_ID with your bot's ID.
says currently in review
Then I can confirm it's in the queue
To be sure, are you talking about submitting your bot to top.gg or are you talking about the functionality of a specific bot?
im talking about the long description styles, i just fixed it
but there is something
this is my description, there is no space between the --- and the list
-css
You can customise your long description using CSS! That includes things like:
- Changing text and background colours
- Adding background images
- Styling and even animating elements
If you're new to CSS, feel free to ask for help in #development or check out this resource.
Please see our guidelines here.
❌ Do not hide or edit core page elements (like reviews, bot info, ads, etc.)
❌ Do not change or overwrite text content from Top.gg elements
❌ No NSFW or seizure-inducing CSS (like rapid flashing)
✅ You can recolour borders or backgrounds, just don't mess with the text inside them!
hope this helps you out @agile wraith
thanks
well it did join a server for verification and then got removed so yea since then I need some clarification
Aside from the botpage, where you can see if it’s still in the queue, You should get a DM about the results and you should be able to search for it in #mod-logs with your bot ID
alright ty
Hey Dyrant may I dm you about some of my bot stuff please.
you can just send him a dm with all the details and he'll get back to you when he's available
Alright thanks
np
When reporting an review, is there any way to attach message links or even screenshots? I have an user that wrote an review full impossible stuff because its actually an issue on his side rather than on the bot side. Beside that he also were rude in the support and prop wrote after that the review based on the timestamp.
Not on the site, but you can open a #staff-tickets if you'd like to provide context
Oh mb forgot to edit, already opend one. Still thanks ^^
No worries!
Hi hello, I want to add a button to my topgg bot page, is it okay to use the logo on the button like this? I've seen some messages here saying I need to give credit somewhere, while others say it's totally fine to use without it
it's fine
Aight thanks for the clarification
np
Why are there two Top.gg apps? Can I safely disable the second one?
I might be going crazy, but there are the IDs
422087909634736160
264434993625956352
First one is a main page (top.gg)
Second one is auctions page (auctions.top.gg)
Aight thanks
Hi everyone! I just invited CoinTrendz Bot to my server, but I can't use commands like !price or !help. The bot is online, and its permissions have been checked. Can anyone help?
-wrongserver @spiral turret
@spiral turret
Hey! This isn't the support server for that bot. Please use the "Discord Support Server" button on the bot's Top.gg page.
If there's no button, the invite is invalid, or you were banned, we can't help unfortunately. Sorry!
okay okay, i think this is the right server, sorry, i apologize
No worries!
Thanks
does it take longer to approve discord servers?
wait time is over a month or two for servers
oh my
Make me a mod for a min I will approve mine and be on my way 🙂 ezy help
took me around 2 weeks for mine to be approved but it also doesnt mean you get approved first try
Boa noite
Estou tentando excluir do top.gg um bot que não existe mais, e não sei o que colocar aqui para ativar o botão de confirmar a exclusão.
Alguém consegue me ajudar?
Olá, pode enviar o link da página do bot, por favor?
O objetivo é escrever “Desligar” nessa caixa
Não deu certo
obrigado, removi-o para si
Obrigado. 😊
np

Hey, you can go to https://top.gg, search for the bot directly, open its page, and click on "Vote" to vote for it
Thank you so much
It worked
And for me, the link you sent works fine, it redirects to this page: https://top.gg/bot/646937666251915264/vote

Pain why isn't it working for me
When you open it directly from the link I sent you, does it not load?
the topgg autoposter doesnt post my full server count on topgg since I added sharding to my bot
any way to fix this?
i had an crazy question so like these bots have an self integrated reminder to vote on topg webiste but what will be for servers like make an bot which reminds them to vote for server or like there will be an integrated reminder or someone will make an bot for this which is an crazy idea tbh
From what zobs wrote, webhooks do not exist for servers yet, so it will be difficult to create something like that for now
please ask for help in #development or #topgg-api, share your code there and someone may be able to help
-refreshdata
@dusk garden
- Go to your bot's main page (https://top.gg/bot/YOURBOTID).
- Click Refresh Data under Creator Controls. (Click Info tab if you're on phone).
- Refresh the page.
💡 Note: Ensure you changed the bot's avatar/name in the Discord Developer Portal, and not the app's icon/name.
thanks
I accidentally reported a comment on my bot page when scrolling on my phone how can I remove that accidental report on a comment?
you can't, it'll stay there
we can't remove it atm since reviews reports aren't working
Hmmm so this comment will just stay in reported state then?
yes
Dang that’s unfortunate because their comment while it was incorrect I replied in hopes to resolve their complaint but now it’s been reported so it looks like we are silencing the complaint. Dang that sucks 
sorry!
Long Description of my bot is not updating can i have a help?
make sure all the required fields are filled
it shows success
what are you trying to edit?
i can't use html?
you can
Long Description
yes but what in the long desc
can i send here or in dm?
what are you trying to do?
description
update
this type of description i want
it's ui is different when i run it on my local but it changes in top.gg
Also keep in mind,
body {
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
}
May also be overwritten by Top.gg's css
oh okay
Reporting apps end up in
You can open a ticket on #staff-tickets to report a bot
check pins
I see
you can also use https://webhook-topgg.com/
this is run by the community team here @ top.gg
please ask for help in #development
It's working 😑
they seem to be having an issue saving their bot page with the webhook info
I was gonna ask them to check devtools but they're on mobile
what's your bot page link please @fast kite
Check out ShareBot Discord Bot on Top.gg, the #1 Discord Bot and Discord App List! https://top.gg/bot/1348761924174745691?s=0542523035e2f
Share your server Easily with our Bot it's a bot share your server to other servers in discord
hmm nothing wrong in the main page
Can you vote for bot?
For test it?
😑
I can after 11 hours
done
Thanks
np
That's a discord server about bot development not other things
I guess
Also the channel description clearly says "this channel is for receiving help with top.gg" plus I'm sure it violates rule 3
Hold on I guess ur a bot cuz it's your first message
@tame sinew Please do not advertise here
So uh
It says tupper is offline
Can anyone help out here
I’m trying to use it and it won’t work since it’s offline
Help
With this problem you need to go to the support server of this bot if it exists
-wrongserver
@eternal geyser
Hey! This isn't the support server for that bot. Please use the "Discord Support Server" button on the bot's Top.gg page.
If there's no button, the invite is invalid, or you were banned, we can't help unfortunately. Sorry!
Youre fine 
its been like 2 weeks still its showing
Your project is currently in review
-upto
@lunar oriole
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
hello! members in our server are unable to vote. they do not have the +1 when typing "/vote".
i do not have "counting" listed as an option in webhooks and it doesn't appear i have a way to add it. the "use application commands" is checked (on) in the server settings.
can u pls help me to figure out why my members are unable to vote using the +1?
please contact the concerned bot's support server
Hello moderator
There is a guy who skidded someone's bot
How can I report against him?
open a ticket #staff-tickets
Server in review for long time any approx estimate time https://top.gg/discord/servers/705905223521292288?s=08162e3eb091d
-upto
@cyan vessel
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
Hello, this is having issues giving me the rewards from watching the video
https://discordbotlist.com/bots/poketwo/upvote/thanks
This is DBL not top.gg

That’s why top.gg is better

They use that too 👀 haven't had a problem with it so far 
Same for bots and servers?
server wait time is months
How can I see the status of my request to add my bot to top.gg? In the past I remember that I used to give you a percentage
It's either a draft, submitted and in queue or reviewed. There's no other (public) states for it - what would the percentage refer to?
Previously (approximately 4 years ago) on the bot's top.gg page, you got a percentage to complete the review, but now it simply says that it is under review, without any percentage
There's no percentage for review at the moment, it probably got removed since people expect it to move at a steady pace whereas the actual speed depends on who's available.
Oh okey, thanks!
how do i see my gg top id
Go to your profile on top.gg and copy the link you will find in the address bar, that's where your ID is
Hey who bot reviews
You mean who checks bots? Anyone who has the Reviewers role
I know
Then I don't understand your question
they opened a ticket 
Check
don't need to ping, if someone is available they'll help you out
Well, how can I make my search bot on Google very powerful
You can use advanced search operators and NLP to craft smart, flexible queries. Leverage tools like Google’s Programmable Search Engine or SerpAPI for structured access, and apply AI to filter and summarize results effectively.
You can ask development related questions in #development channel, that'll be more effective.🦦
hello, i added my server to top.gg but it says "your project is currently in review" for 1,5 weeks. how do i know whats the status of that
The review process can take some time—sometimes even months. You can keep an eye on the #mod-logs channel for any updates or progress on your submission.
oh thank you :) good to know that
takes up to 2 weeks*
thanks :)
how much time it takes to review server? i added my server to top.gg
i want to know how much time it takes and is there any way to done it early?
takes up to 2 weeks
- bot expert
and no I would say, but not sure
servers currently take longer than bots, probably 4-6 weeks or more
i'd say months 
oh oops i thought they said bots
@zinc pivot hello can you please turn on your dms and send me a message, it's about your bot
I am unsure which support channel to use or whether I should create a support ticket. According to the server guide, once my bot is verified the owner account should receive the Bot Developer role. My bot is verified on Top.gg, but I haven't received the role here. Could anyone clarify the process?
Thank you!
It's a known issue that people don't get this role automatically, as soon as a mod sees your message they will give you the role
please help me solve the problem
you/your friend was banned on the other account because you never fixed the problems on your bot
what's your bot's id?
if you have an approved bot on top.gg, you get the role, ppl can ask a moderator to assign it (i did for you)
760386446821163039
please check for me
yeah search that in #mod-logs you'll see the reasons
is "erick cocain" your other account?
that is my friend's account
My friend fixed the error but still banned
-appeal @sour totem
@sour totem
If someone you know has been banned here, then direct them to open a support ticket (select Account/Login issues and then Ban Appeals).
Here's more resources to read through regarding appeals: Ban Appeals
my bot’s pfp does not show for some reason. Is this a bug or have I done something wrong?
You need to refresh the bot avatar using the "refresh data" button
-refreshdata
- Go to your bot's main page (https://top.gg/bot/YOURBOTID).
- Click Refresh Data under Creator Controls. (Click Info tab if you're on phone).
- Refresh the page.
💡 Note: Ensure you changed the bot's avatar/name in the Discord Developer Portal, and not the app's icon/name.
^^
ok thanks
@sweet grove
Hey,
My bot was never offline. It's running 24/7, and I double-checked everything on my end. If it showed as offline during your review, that’s not something caused by me. It might’ve been an issue on your side.
Please look into this again and let me know.
Thanks.
Hello! Appreicate you reaching out. I have provided a screenshot in the decline showing it was offline. Please feel free to resubmit if the bot has come online sense then.
Try going to the website that's in the bot's About Me that should bring it online. Let me know if it doesn't work
I will not be clicking on that website for my security, if you believe the bot is back online please resubmit it.
It is online right now! I'm resubmitting it right now.
Thank you.
It’s aight, got it handled with William 👍
If you get Application did not respond it usually just means the bot’s rate limited. Give it a few tries and it should work fine.
Okay, sounds good. Your bot was added to the queue, so please wait for it to be reviewed.
-upto
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
I've waited for like 2 months but okay 👍
Hey is there any chance i can move my bot thats been approved over to a new id, its the same bot, same functionalities just moved over to a new application since it required intents
Can I get the Bot Developer role?
you can't, you have to resubmit the new application and delete the old one
done 
i can submit my bot even if its unfinished right?
as long as it has working features and follows our guidelines, yes
thanks for reviewing my bot the other day, i noticed there was some bugs when I checked the logs so i fixed all of those 
I can’t add the video to mp3 bot to my server, is there a reason why-
Never mind I found an alternative:))
Thank you so much for your support!
It was declined again for the same reason. What’s strange is that I’ve never actually encountered this issue myself.
I already readed that's why I'm asking
Asking what?
Guess the music command will be marked as new or existing
As my bot don't have Guess the music feature
Your bot is a clone of which bot?
Eleven open source bot
It may be considered as a new command
Okk
Hey
hii
When will the bot be reviewed
I've been submitting for over a week
working fine after connecting to a VPN
Well your bot was submitted 2 days ago, so you've to wait for your bot's turn to come
-upto @rugged rapids
@rugged rapids
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
2 days longer because I bot transferred my account
I have finished everything in the bot only topgg remains
Your bot's name is Drex Bot, right?
Yes
It was submitted 3 days ago only
The bot was first submitted from another account and I moved it to my account 2 days ago
can you give me the id of old account?
Okay
well first go through this
839153916063121408
6 days ago

6+3 = 9 days
what?

Your bot is in a Queue, and you need to wait for your bot's turn to come. That's what I can say.
Well anyway I have everything fixed for my bot just waiting for you to review
Okay
If the owner of bot source code say to verify my will u verify?@ig.aj
wdym?
As I cloned bot if the real owner of my cloned bot source code owner say to verify bot will u verify
nope
take your time
why do i get this message
when i try to add a webhook url?
it appears to be bot specific
the same webhook works fine with another bot that i own on TOP.GG
what... it just works now???
i didn't change anything and now it works
random crash, can you send your bot's link please @wanton pagoda
Can i get help? cuz few people are review bombing my bot's page
more happening, all in last 15 mins
@jagged rampart please check your dms
open a #staff-tickets
we moved things to tickets now 
nvm sorry
that's fine, please whitelist our testing server (333949691962195969) so we can access the vip status
i will,, thanks
Ok, I resubmitted RoAPI
how long its gonna take for my rain tag server to get added to the list?
you shouldn't put tags in the description, they have a dedicated category
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
oh
can you tell me which one?
"categories"
@gray tartan Hey, question about the Playfab Manager bot, did you own the server while using the /setup command?
yes
please dm the reviewer 
but yes, dm me
it is working normally now. do i still have to send the link over?
no it's fine, i was just curious to see what could be the reason lol
Cursed Meme Game Bot. Brainrot Quizzes, Skibidi Slots, Rizz Roulette, Stats, Leaderboards, Custom Questions & more!
if it helps u
my bot was recently approved
and i wanted to implement the voting thing
ill have a look later 
Brainrot 😭🙏
🙏
I cannot DM about my bot being declined because it’s just showing a USER ID and I cannot DM a user ID and so I need some help here.
as per your decline, you just have to resubmit the bot with the correct prefix (/) in the prefix box, but if you want to dm the reviewer, it's @sage monolith
@lone ether my bot added to verification server how much time it will take to verify
-upto @twilit kernel
@twilit kernel
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
ah, my bad, I didn't see that it's already added.
it's is being reviewed by one of our reviewer and soon you'll get to know the outcome
Well Bubba when coding it takes time it requires patience lol making something does take time even if you are
Ohhh okie thanks! 😊 🙏🏼
@sage monolith I talked with ixr Don't decline this this by saying clone owner of original bot have me permission also tell other reviewers so they don't decline my request
I have proofs also
what?
It's hard to explain @lone ether he knows about my bot
Clones get declined. You can talk to the Reviewer in question if you want to "appeal" the decision and give them proof about whatever
I gave to him he said it will get verified
U can ask to bot expert (ixz)
Can I put a link to an MD file and it'll load up in the long description?
yes
-htmldesc
You can achieve this using Markdown or HTML in your bot's description. You can ask in #development for help or use this HTML and Markdown cheatsheet for more resources.
ah yeah, you need to have some content on top.gg that's 300 characters long, before you totally embed your site into the description
asking for a friend:
Same code but different bot profile, can i transfer my bot to the new ID or do i have to retest it?
you cannot have two bots that have same features listed at the same time
That's not what i was asking, i'm trying to see if my friend can transfer the bot page already listed to a different ID, if it has the same exact bot code and such. We are resetting a few top.gg api vote rewards as well as starting over from a new database so we are just tryna see if we can change the bot from https://top.gg/bot/1310688990910742529 to https://top.gg/bot/1370875530282270720
As it's a new bot application but same exact features and such
I'm developer my friend owns the application, that's why i'm asking
you're asking for ownership transfer?
or you're saying that you're just gonna use a new application id for your bot and you want us to delete the old one
My friend initially created bot with id 1310688990910742529 and it's on top.gg listed already. Well, he created a new bot application with ID: 1370875530282270720 and it has the same commands and features so i'm tryna see if it's possible to transfer the profile from the original to the new one
you cannot "transfer", that has to be a new application which will be listed on top.gg as a new profile, i can delete the old bot if you want
Please do. Also, can you by chance tell me where on the queue bot with ID: 1265343375054340160 is because it's been close to 2 weeks i believe since submitted
Just trying to get status of a few different bot's i'm a developer or co-owner of
current ETA is 2 weeks, we have a really large queue, looks like you submitted your bot exactly a week ago, not close to 2 weeks. can't really say as to when exactly it'll be reviewed
No worries, was just checking. Been coding a lot so days just blend together lol
looks like this bot is owned by axylis_dev on top.gg, please have them reach out to me to confirm that they're willing to get it off of the site
@woeful prairie ^
I did state that my friend was the owner to be fair lol. I pinged him, i'll also send him a message link
yes, and we want the owner to confirm it.
I understand. I was just stating lol
approved.
i would still need access as an admin
but yeah
scarlet is new owner of the application
Did you add the new PC to the queue @woeful prairie? if so can you approve transferring that to me
they can submit it and transfer it to a team later on
the new bot
it has to go through the queue unfortunately sorry
im hoping it'll be cleared soon, since it was a long weekend it's slow-paced
cool
but bare in mind ETA is 1-2 weeks
ill get it put on ther e
No worries lol. I understand it may take time
Do you guys need help with bot testers? I have a lot of spare time now
Volunteer Applications
Hey! It seems like you're interested on volunteering for Top.gg. We're glad for any help we can get regarding our server events, support articles, bot reviewing, moderation, and more!
Reviewers
Reviewers are Top.gg staff and must be 18 or older. Reviewers review the discord bots submitted to the site before they are listed to make sure they follow our rules
Moderators
Reviewer is a stepping stone to Moderator - if you wish to be a Moderator you must first apply and be accepted as a Reviewer.
Applications are currently: closed
We open applications when we need more Reviewers. Please keep an eye on #announcements for more information!
Dang, okay. I'll keep it in mind to keep track of that
so would you delete the old application @shell inlet
already done
Okay thank you
I;m trying to vote from yesterday but site is getting loaded. It loads all the time and stay there. what should I do?
.ban @ocean scroll 7 support scam
Banned rkin89896
cool
-troubleshoot
@coarse leaf
Troubleshooting steps
Make sure you're logged in the correct Discord account on Discord web: https://discord.com/login. Then log in again at Top.gg.
Try these steps in order:
- Turn off ad blockers/VPNs and try again.
- Log out and log back in.
- Use a different browser (not Opera/Brave, they cause issues sometimes).
- Use incognito mode on any browser.
- Use a different device.
- Wait a few hours. If the issue persists, come back for more help!
it is should like this and when I move my cursor on verify human it starts loading and I tried again after 6 hours. till not responding
Yeah same issue here
Still no response
cleared data?
Yeah
Changed browser no response
Ignotic tab no response
Cleared data no response
can you try these
I did those but till not responding
Hey does this server have a clan tag
Clan tag?
This is a support server for https://top.gg
Can anyone tell me that my bot is listed on top.gg or not because after declination i cant able to add in queue again
what do you mean by you can't add to the queue again
Ya it is saying aleardy submited to top.gg so i am asking to check that whether it is submitted or not
your bot is currently in queue
Okay Thanks
np
All done no response same issue scrolling
ill let the devs know
yeah I firstly tried on phone the site didn't load and even not on my pc
and it's been so long but still no respond
same thing
i let the devs know internally, thank you! appreciate your patience
tyvmm
Hey
When does top.gg start optimizing for server listing again
It’s been down quite a lot
Like the site is going down?
The metrics is
700 impressions
For front page server listing sites
Is lowkey bad
Ah. It's going to take time for that to all come back.
How it takes to my bot approved
@twilit kernel
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
Good, you still need to wait
Okk
@grand prism if my lavalink expired and music didn't played will get declined?
I just changed new lavalinks
When u make the form
Weak ago
the current ETA is 1-2 weeks
Am I able to get my bot added here?
Only if your bot is a staff pick afaik
why when i’ve been in 4 step, i verificate, and i see, i can’t go back, and i can’t continue my bot, GIVE MY BOT TO CONTINUE!
go to https://top.gg/bot/BOTID directly
replace BOTID with your bot's ID
oke
You can make a #staff-tickets ticket
the vote buttons tooltip is appearing in the top left corner when hovering and doesn't disappear on the profile page smh
@wheat minnow
Hey! This isn't the support server for that bot. Please use the "Discord Support Server" button on the bot's Top.gg page.
If there's no button, the invite is invalid, or you were banned, we can't help unfortunately. Sorry!
Why isn't Top.gg displaying my bot's logo? https://top.gg/bot/1304790396773339147
on the page itself there is no logo.
It's fixed. Thanks!
Contact the person who declined your bot via DM
@echo pumice imagine deleting msg
Ya the reason is i have found my mistake sorry
@lone ether can you review my bot i applied approx 15days ago maybe
*6 days ago
ohh ok so now what ?
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
Yo
Hi, where can I see the date I published it for review?
you can't
How to delete my bot
Go to your bot edit page, then go to the delete tab.
Page not open
And showing already register
What is your Bot ID
1369558247010472007
Then it appears you aren’t logged into the correct account associated with that bot.
Now to fix
Wait
Same problem
403
@sweet grove
Please open up a #staff-tickets and a mod can assist you in making sure you are on the correct account.
the bot is a draft submission by another user, we cannot delete it without their consent. @safe rapids the current owner of the page is @errant torrent
I am sumit bot this account
is that your account? "dv premium"?
do you own the bot?
Yes
It's almost been a week and my bot has never been accepted, ahh lil bro my account is forgotten on top.gg
My own I will make last 2 Days
@wise acorn
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
good
Hey I deleted my bot from Top.GG and now I want to add it again but it gives me an error that the bot is already listed, however it's deleted. Is there a cooldown to it?
1h cooldown
why did you delete it?
what prefix do i use for my discord bot?
i need help adding my bot on top.gg
can anyone help plsssss
what prefix does your bot use?
i dont really know, i used "/"
Sorry for the ping, I have my website accept the webhook from topgg, I'm new to webhooks and all that jazz. My situation, I have my website in a docker container but it's on a separate docker-compose.yml than my bot is, and I have it where it transfers the post to my bot from top.gg. I made sure to use the auth code in top.gg, is there any vulnerabilities i should look out for. Currently I my website going through cloudflare and have a ssl throught let's encrypt.
I submitted my bot around a month ago and still haven't gotten a reply. Should I submit it again?
What is the ID
That's not even possible
1342962094332448871
That bot was submitted 9 days ago and is still in our queue system. Understand, our queue can take 2-3 weeks currently. We do appreciate your patience.
Nine days? It's felt way longer.
Alright. Thank you!
Make a ticket in #staff-tickets they'll help you there
don't need to create a ticket for that 
you can wait for a reply from a staff who will tell you whether a ticket is required or not
@lone ether are u going to review my bot today or not ?
stop pinging about bot reviewing, we review on our free time
Okk u said in Wednesday so I asked nvm
@lone ether did u mean private servers?
#mod-logs message
a breach is a breach, it does not matter if the server is public or private
Is there a way to find out my bot’s current position in the queue?
Not really
Okay thanks
Create ticket at #staff-tickets
We don’t provide that information
If my account was hacked and the account had a bot on top.gg can i add my bot back from my alt account?
or somehow retrieve access to top.gg dashboard
You can transfer ownership to your account if you can still prove that the bot belongs to you (e.g. by changing its status)
Open a ticket on #staff-tickets and a mod will walk you through the ownership transfer process
ok
nvm
recovered
How can I check the status of my bot's listing?
Open ticket on #staff-tickets
-b 1324791396640751707 dm ads
shunniuso_mc_the_shield#0 was successfully banned.
you can visit your bot's top.gg page if its published and has been approved. if it is in queue, there's no way to know where it is located in the queue. our current eta is 1-2 weeks
-upto
When will my bot be reviewed?
Our current average review time is 1-2 weeks.
Some bots may take longer to review than others depending on their features. Because of this, we can't guarantee your bot will be reviewed as quickly as someone else's, and there's no exact timeframe for approval. There's also no way to check your position in the queue — but remember, you're not first or last!
You're free to edit your bot's page anytime, both before and after review. This won't affect your place in the queue.
You can read more about our review process here: How the Reviewing Process Works.
In the meantime, please make sure your bot follows all of our Bot Guidelines for a quick and smooth approval!
It was a #logs channel
I can't see it.
Because it's deleted
I don't know if it was mentioned anywhere why this change was made, but maybe it was a privacy issue or something 🤷♂️
privacy reasons, developers not understanding why some bots get reviewed before others, etc



