1. Library
Ludoria
  • Back to home
  • Residents
  • Lists
    • liked games lists
      • Retrieve a list
      • List all games from 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
    • List all lists
      GET
    • Retrieve a list
      GET
    • Create a list
      POST
    • Add game to list
      PUT
    • Update a list
      PATCH
    • Delete a list
      DELETE
    • Remove game from list
      DELETE
  • Reviews
    • List all reviews
      GET
    • Retrieve a review
      GET
    • Add a review
      POST
    • Update a review
      PATCH
    • Delete a review
      DELETE
  • Ratings
    • List all ratings
      GET
    • Retrieve a rating
      GET
    • Add a rating
      POST
    • Upsert a rating
      PUT
    • Update a rating
      PATCH
    • Delete a rating
      DELETE
  • Game Stats
    • List a resident's stats per game
  • Library
    • Get library visibility settings
      GET
    • List game library statuses as virtual lists
      GET
    • Update library visibility settings
      PATCH
    • List library entries for a resident
      GET
    • Add or upsert a library entry
      PUT
    • Get a library entry
      GET
    • Update a library entry
      PATCH
    • Remove a library entry
      DELETE
  • Liked Games
    • Get liked games for a resident
    • Like a game
    • Update liked-games visibility
    • Unlike a game
  • Deleted
    • obfuscates data
  • List all residents
    GET
  • Retrieve resident profile
    GET
  • Create a resident
    POST
  • Update a resident
    PATCH
  • Deletion request
    DELETE
  • Delete a resident
    DELETE
  • Follow a resident
    POST
  • Unfollow a resident
    DELETE
  1. Library

List game library statuses as virtual lists

GET
/residents/{id}/library/lists
library
Last modified:2026-05-28 02:57:01
Maintainer:Not configured
Returns all predefined game library statuses as list-shaped objects suitable
for profile or dashboard previews.
When include_first_4_items=true, each list includes up to four recently
added games ordered by added_at descending.
Unlike custom lists, this endpoint always succeeds for valid residents and
returns all status buckets (with total_items: 0 when empty). For visitors,
private status buckets are omitted entirely.

Request

Authorization
or
Path Params

Query Params

Header 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 'http://localhost:4002/rest/residents//library/lists?include_first_4_items=true' \
--header 'X-Nexus-Key: '

Responses

🟢200
application/json
Game library status lists
Bodyapplication/json

Examples
[
    {
        "id": "WISHLIST",
        "slug": "wishlist",
        "name": "Wishlist",
        "description": null,
        "is_public": true,
        "total_items": 12,
        "status": "WISHLIST",
        "items": [
            {
                "id": "1942",
                "name": "The Witcher 3",
                "cover": "https://images.igdb.com/igdb/image/upload/t_cover_big/co1wyy.jpg"
            }
        ]
    },
    {
        "id": "PLAYING",
        "slug": "playing",
        "name": "Playing",
        "description": null,
        "is_public": true,
        "total_items": 2,
        "status": "PLAYING",
        "items": [
            {
                "id": "119171",
                "name": "Hades II",
                "cover": "https://images.igdb.com/igdb/image/upload/t_cover_big/co6pib.jpg"
            }
        ]
    }
]
🟠422UnprocessableEntity
Modified at 2026-05-28 02:57:01
Previous
Get library visibility settings
Next
Update library visibility settings
Built with