User Info

User Data Format

Name

Type

Description

username

String

The user's name (will always be unique)

uuid

Identifier (String)

15-character identifier that uniquely defines this user.

createdAt

Unix Timestamp (Int)

The time at which this user account was created

pronouns

Pronoun (String)

The associated pronoun of this user, one of "he/him", "she/her", and "they/them".

bio?

String

The user's life story (that's a joke, do not put your life story in your bio)

avatar?

URL (String)

The url to the avatar of the user (always is an i.imgur.com link)

flags

Integer

The user flags, more info here

User Flags

Name

Hexadecimal

Description

Velleity Staff

0x01 (1 << 0)

User is Velleity Staff, knows the internal working and can moderate server-wide. (aka the people you don't want to mess with.)

Other User Information

GET https://velliety.bensova.me/v1/users/:id

Path Parameters

NameTypeDescription

:id

string

The id of the user you're trying to fetch

{
    "username": "Ben",
    "uuid": "004453070017000",
    "createdAt": 1629485870022,
    "pronouns": "he/him",  
    "bio": "Just the owner of this thing",
    "flags": 0
}

Last updated