v45

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-143613122.6 KB
alias

Get basic details about a user, given their username

get/v1/alias/{username}

Path parameters

usernamestring required

Username of the user who you are looking for

Response

User object

idstring uuid required

The ID of this user

type'user' | 'org' required

Whether this is a user or an organization

biostring nullable required

The user’s biography, if they have provided one

usernamestring nullable required

The user’s handle that they chose for themselves. Does not include the @ symbol

profileImageUrlstring uri nullable required

URL that points to the user’s profile image, if one exists

urlstring uri required

URL of this user’s profile on Val Town’s website

Example response

{
  "id": "00000000-0000-0000-0000-000000000000",
  "bio": "Hello world",
  "username": "tmcw",
  "url": "https://val.town/u/tmcw",
  "profileImageUrl": null
}