1. residents
Ludoria
  • auth
    • Login
      POST
    • Facebook Auth
      GET
    • Google Auth
      GET
    • Discord Auth
      GET
    • Apple Auth
      GET
  • achievements
    • List all achievements
      GET
    • Retrieve an achievement
      GET
    • Create an achievement
      POST
    • Update an achievement
      PATCH
    • Delete an achievement
      DELETE
  • activity-logs
    • List all activity log entries
      GET
    • Retrieve an activity log entry
      GET
    • Create an activity log entry
      POST
    • Update an activity log entry
      PATCH
    • Delete an activity log entry
      DELETE
  • badges
    • List all badges
      GET
    • Retrieve a badge
      GET
    • Create a badge
      POST
    • Update a badge
      PATCH
    • Delete a badge
      DELETE
  • backlog
    • List all backlog entries
    • Retrieve a backlog entry
    • Create a backlog entry
    • Update a backlog entry
    • Delete a backlog entry
  • blogs
    • List all blogs
    • Retrieve a blog post
    • Create a blog post
    • Update a blog post
    • Delete a blog
  • changelog
    • List all changelog entries
    • Retrieve a changelog entry
    • Create a changelog entry
    • Update a changelog entry
    • Delete a changelog entry
  • feedback
    • List all feedback
    • Retrieve a feedback
    • Create a feedback
    • Update a feedback
    • Delete a feedback
  • subscriptions
    • List all subscriptions
    • Retrieve a subscription
    • Create a subscription
    • Update a subscription
    • Delete a subscription
  • subscriptions offers
    • List all subscriptions
    • Retrieve a subscription offer
    • Create a subscription offer
    • Update a subscription offer
    • Delete a subscription
  • games
    • stats
      • List all game stats
      • Retrieve a game's stats
      • Create a game's stats
      • Upsert a game's stats
      • Update a game's stats
      • Increment a game's stats
      • Decrement a game's stats
      • Delete a game's stats
    • List games
    • Query Games
    • Popular Games
  • lists
    • liked games lists
      • List all lists
      • Retrieve a list
      • Like a game
      • Update a list
      • Remove game from list
    • played games lists
      • List all played games
      • Retrieve a played game
      • Add a played game
      • Update a played game
      • Remove a played game
    • personalized lists
      • List all lists
      • Retrieve a list
      • Create a list
      • Add game to list
      • Update a list
      • Delete a list
      • Remove game from list
  • reviews
    • List all reviews
    • List all reviews by game
    • Retrieve a review
    • Create a review
    • Like a review
    • Update a review
    • Delete a review
  • ratings
    • List all ratings
    • List all ratings by game
    • Retrieve a rating
    • Retrieve the overall rating of a game
    • Create a rating
    • Update a rating
    • Delete a rating
  • residents
    • lists
      • liked games lists
        • List all lists
        • Retrieve a list
        • Like a game
        • Update a list
        • Remove game from list
      • played games lists
        • List all played games
        • Retrieve a played game
        • Add a played game
        • Update a played game
        • Remove a played game
      • personalized lists
        • List all lists
        • Retrieve a list
        • Create a list
        • Add game to list
        • Update a list
        • Delete a list
        • Remove game from list
    • reviews
      • List all reviews
      • List all reviews by game
      • Retrieve a review
      • Add a review
      • Update a review
      • Delete a review
    • ratings
      • List all ratings
      • List all ratings by game
      • Retrieve a rating
      • Retrieve the overall rating of a game
      • Add a rating
      • Update a rating
      • Delete a rating
    • List all residents
      GET
    • Retrieve resident profile
      GET
    • Create a resident
      POST
    • Update a resident
      PATCH
    • Delete a resident
      DELETE
  • roles
    • List all roles
    • Retrieve a role
    • Create a role
    • Update a role
    • Delete a role
  • waitlist
    • List all waitlists
    • Retrieve a waitlist
    • Create a waitlist
    • Update a waitlist
    • Delete a waitlist
    • List all waitlists entries
    • List a waitlist's entries
    • Retrieve a waitlist entry
    • Join a waitlist
    • Update a waitlist entry
    • Leave a waitlist
  • Schemas
    • Pagination
    • List
    • Date Metadata
    • Game Stats
    • Deleted Item
    • List Item
    • Achievement
    • Activity Log
    • Backlog
    • Badge
    • Blog
    • Blog with Author
    • Changelog
    • Feedback
    • Rating
    • Resident
    • Resident Basic Info
    • Review
    • Role
    • Subscription
    • Subscription Offer
    • Waitlist
    • Waitlist Entry
    • Waitlist with Entries
  1. residents

Retrieve resident profile

Designing
GET
/residents/{id}
Last modified:2026-03-26 06:36:48
Maintainer:Not configured

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:4002/rest/residents/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "id": "string",
    "username": "string",
    "email": "user@example.com",
    "first_name": "string",
    "last_name": "string",
    "gender": "string",
    "date_of_birth": "2019-08-24T14:15:22.123Z",
    "profile_picture_url": "string",
    "email_validation_status_id": "string",
    "external_provider_id": "string",
    "external_provider_token": "string",
    "referral_code": "string",
    "role_id": "string",
    "followers_count": 0,
    "following_count": 0,
    "last_login": "2019-08-24T14:15:22.123Z",
    "played_games": 0,
    "liked_games": 0,
    "reviews": 0,
    "lists": 0,
    "created_at": "2019-08-24T14:15:22.123Z",
    "updated_at": "2019-08-24T14:15:22.123Z"
}
🟠401Unathorized
🔴500Server Error
Modified at 2026-03-26 06:36:48
Previous
List all residents
Next
Create a resident
Built with