1. Liked Games
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
      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
      GET
    • Like a game
      PUT
    • Update liked-games visibility
      PATCH
    • Unlike a game
      DELETE
  • 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. Liked Games

Like a game

PUT
/v1/residents/{id}/liked-games
liked-games
Last modified:2026-05-25 04:01:45
Maintainer:JoseMa Esparza
Requires JWT and profile ownership. Idempotent if already liked.

Request

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

Header Params

Body Params application/jsonRequired

Example
{
    "id": "1942",
    "slug": "the-witcher-3",
    "title": "The Witcher 3",
    "cover": "https://images.igdb.com/igdb/image/upload/t_cover_big/co1wyy.jpg"
}

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 PUT 'http://localhost:4002/rest/v1/residents//liked-games' \
--header 'X-Nexus-Key: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "id": "1942",
    "slug": "the-witcher-3",
    "title": "The Witcher 3",
    "cover": "https://images.igdb.com/igdb/image/upload/t_cover_big/co1wyy.jpg"
}'

Responses

🟢200
application/json
Like result
Bodyapplication/json

Example
{
    "game_id": "string",
    "is_added": true,
    "total": 0
}
🟠401Unauthorized
🟠403Forbidden
🟠422UnprocessableEntity
Modified at 2026-05-25 04:01:45
Previous
Get liked games for a resident
Next
Update liked-games visibility
Built with