1. ratings
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
    • Retrieve a badge
    • Create a badge
    • Update a badge
    • Delete a badge
  • 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
        GET
      • List all ratings by game
        GET
      • Retrieve a rating
        GET
      • Retrieve the overall rating of a game
        GET
      • Add a rating
        POST
      • Update a rating
        PATCH
      • Delete a rating
        DELETE
    • 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. ratings

List all ratings by game

Designing
GET
/v1/residents/{id}/ratings/game/{id}
ratingsresidents
Last modified:2025-10-27 02:04:21
Maintainer:Not configured

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 --request GET 'http://localhost:4002/rest/v1/residents//ratings/game/' \
--header 'X-Nexus-Key: '

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": "rat_rqm0ZmKceveAcobV",
        "rating": 4,
        "game_id": "129",
        "resident_id": "res_z2mBqk28BgdRCi4W",
        "created_at": "2025-04-26T04:18:23.159Z",
        "updated_at": "2025-04-26T04:18:23.159Z"
    }
]
🟠401Unathorized
🟠404Not Found
🔴500Server Error
Modified at 2025-10-27 02:04:21
Previous
List all ratings
Next
Retrieve a rating
Built with