GET
/discord/user/[id]/avatar
Get the avatar of a Discord user by their ID.
GET
/discord/user/[id]/avatar
id
string
The ID of the Discord user
size
number
Optional (default: 512)
The size of the avatar image by powers of 2.
200
Successful response
file
A file is returned as the body.
Content-Type
string
The content type of the image
Cache-Control
string
The cache control header
400
Error
An invalid size was provided
object
{
"data": null,
"error": "Invalid size"
}
400
Error
An invalid Discord ID was provided. This may be because it was not found.
object
{
"data": null,
"error": "No Discord ID provided"
}