API Docs/Ratings

From SponsorBlock
Revision as of 05:07, 1 December 2021 by Ajay (talk | contribs) (clarify optional types)
Jump to navigation Jump to search

POST /api/ratings/rate

Add user's rating to the video

Input (URL Parameters)

{
  videoID: string
  userID: string, // Local UserID
  service: string, // Default YouTube - See refereneces
  type: int, // Rating type - See references
  enabled: boolean // Default true - if rating should count - set to false to undo vote
}

References: Types#service, Types#Rating Types Response

{
  Nothing (Status Code 200)
}

Error Codes

400: Bad Request (Your inputs are wrong/impossible)


GET /api/ratings/rate/:sha256HashPrefix

Get rating of a video with extra privacy

sha256HashPrefix is a hash of the YouTube videoID. It should be the first 4 - 32 characters (4 is recommended). This provides extra privacy by potentially finding more than just the video you are looking for since the server will not know exactly what video you are looking for.

Input (URL Parameters)

{
  prefix: string, // alternative to path
  type: int, // Optional: Rating type - default 1 and 0 - can be repeated for multiple types
  types: [int], // Optional: Array of rating types
}

Response

[{ // Array of this object
   videoID: string,
   hash: string, // Full hash of the videoID
   type: int, // Type of rating
   count: int // Number of ratings of this type
}]

Error Codes

400: Bad Request (Your inputs are wrong/impossible)

404: No ratings for that type + videoID combination exist

VIP Calls

POST /api/ratings/clearCache

Clear redis cache for video.

Input (Request Body):

{
  userID: string, // Local userID
  videoID: string
}

Response:

{
  Cache cleared on video videoID (status code 200)
}

Error codes:

400: Bad Request (Your inputs are wrong/impossible)

403: Unauthorized (You are not a VIP)