Skip to main content
GET
/
applications
/
@me
List current user applications
curl --request GET \
  --url https://api.fluxer.app/v1/applications/@me \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "icon": "<string>",
  "description": "<string>",
  "bot_public": true,
  "bot_require_code_grant": true,
  "flags": 1073741823,
  "bot": {
    "id": "<string>",
    "username": "<string>",
    "discriminator": "<string>",
    "bio": "<string>",
    "flags": 1073741823,
    "avatar": "<string>",
    "banner": "<string>",
    "token": "<string>",
    "mfa_enabled": true,
    "authenticator_types": [
      0
    ]
  }
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Response

Success

id
string
required

The unique identifier of the application

name
string
required

The name of the application

icon
string | null
required

The icon hash of the application

description
string | null
required

The description of the application

bot_public
boolean
required

Whether the bot can be invited by anyone

bot_require_code_grant
boolean
required

Whether the bot requires OAuth2 code grant

flags
integer<int32>
required

The application flags

Required range: 0 <= x <= 2147483647
bot
object

Detailed bot user metadata