Lists all OAuth2 applications registered by the authenticated user. Includes application credentials and metadata. Requires valid OAuth2 access token.
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
]
}
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Success
The unique identifier of the application
The name of the application
The icon hash of the application
The description of the application
Whether the bot can be invited by anyone
Whether the bot requires OAuth2 code grant
The application flags
0 <= x <= 2147483647Detailed bot user metadata
Show child attributes
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
]
}
}