1. played games lists
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
        GET
      • Retrieve a played game
        GET
      • Add a played game
        PUT
      • Update a played game
        PATCH
      • Remove a played game
        DELETE
    • 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
      GET
  • Library
    • Get library visibility settings
    • List game library statuses as virtual lists
    • Update library visibility settings
    • List library entries for a resident
    • Add or upsert a library entry
    • Get a library entry
    • Update a library entry
    • Remove a library entry
  • 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. played games lists

Retrieve a played game

Pending
GET
/v1/residents/{id}/played-games/{playedGameID}
listsresidents
Last modified:2026-05-25 04:22:58
Maintainer:JoseMa Esparza

Request

Path 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/v1/residents//played-games/' \
--header 'X-Nexus-Key: ' \
--header 'X-Nexus-Key: ' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "data": {
        "id": "string",
        "slug": "string",
        "name": "string",
        "description": "string",
        "rarity": "COMMON",
        "icon_url": "string",
        "embedding": [
            0
        ]
    }
}
🟠400Bad Request
🟠401Unathorized
🟠404Not Found
🔴500Server Error
Modified at 2026-05-25 04:22:58
Previous
List all played games
Next
Add a played game
Built with