API Docs/Ratings: Difference between revisions

From SponsorBlock
Jump to navigation Jump to search
m (Mchangrh moved page API Docs/Dislike to API Docs/Ratings without leaving a redirect: follow naming convention for files)
(fix incorrect url)
Line 20: Line 20:


400: Bad Request (Your inputs are wrong/impossible)
400: Bad Request (Your inputs are wrong/impossible)
----'''GET <code>/api/ratings/:sha256HashPrefix</code>'''
----'''GET <code>/api/ratings/rate:sha256HashPrefix</code>'''


Get rating of a video with extra privacy
Get rating of a video with extra privacy

Revision as of 16:52, 21 November 2021

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, // Rating type - default 1 and 0 - can be repeated for multiple types
  types: [int], // 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)