https://github.com/shiawaseu/discordlookup
API for retrieving data about users, servers, applications.
https://github.com/shiawaseu/discordlookup
api discord discord-api lookup
Last synced: 12 days ago
JSON representation
API for retrieving data about users, servers, applications.
- Host: GitHub
- URL: https://github.com/shiawaseu/discordlookup
- Owner: Shiawaseu
- Created: 2023-08-05T15:28:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-26T12:19:58.000Z (20 days ago)
- Last Synced: 2025-06-26T13:26:48.037Z (20 days ago)
- Topics: api, discord, discord-api, lookup
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
DiscordLookup
## About ##
API for retrieving data about users, servers, applications. Made simplified for external use.
## Requirements to host ##
- A GitHub account to place your files in
- A [Cyclic](https://cyclic.sh) account
- [A Discord bot token](https://discord.com/developers/applications)
## Host your own for free ##
1 - Clone this repo to a **private** repository
2 - Edit your `config.json` file to the required data (in this case your bot token)

3 - Visit [this](https://app.cyclic.sh/#/deploy) page and click this button

4 - Allow Cyclic to view your private repositories by going here

5 - Import the GitHub repo you just created, and it will do the rest for you

### Result ###
And now you can call the endpoints like so
- `my-website.cyclic.app/user/1115643711666278521`
- Example response:
```json
{"success":true,"id":"1115643711666278521","username":"shiawaseu","avatar":{"url":"https://cdn.discordapp.com/avatars/1115643711666278521/cb8ddb72da41691f971a5302a2450c1a.png","decoration":null,"animated":false},"banner":{"url":"https://cdn.discordapp.com/banners/1115643711666278521/a_97da1fb1a9c325b3641e3068b124fd61.png","animated":true,"color":null},"badges":["HOUSE_BRILLIANCE"],"accent_color":null,"discriminator":"0"}
```
## Host your own locally ##```bash
$ git clone https://github.com/MEMEZNUT999/DiscordLookup.git
```
- and then setup `config.json`
```bash
$ npm install
```
```bash
$ node .```