2024-10-08 21:40:02 +05:30
[](https://chromewebstore.google.com/detail/return-youtube-dislike/gebbhagfogifgggkldgodflihgfeippi)
[](https://chromewebstore.google.com/detail/return-youtube-dislike/gebbhagfogifgggkldgodflihgfeippi)
2021-11-29 00:46:50 +03:00
[](https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/)
[](https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/)
2021-11-22 18:38:28 +03:00
[](https://github.com/Anarios/return-youtube-dislike/commits/main)
2021-11-23 08:32:42 +05:30
[](https://github.com/Anarios/return-youtube-dislike/issues)
2021-11-22 18:38:28 +03:00
[](https://discord.gg/UMxyMmCgfF)
[](https://github.com/Anarios/return-youtube-dislike/blob/main/LICENSE)
2021-11-23 19:21:02 +03:00
2026-08-08 23:23:14 +08:00
Read this in other languages: [English ](README.md ), [العربية ](READMEar.md ), [Azərbaycan dili ](READMEaz.md ), [български ](READMEbg.md ), [繁體中文 ](READMEtw.md ), [简体中文 ](READMEcn.md ), [Danish ](READMEda.md ), [Deutsch ](READMEde.md ), [Español ](READMEes.md ), [Français ](READMEfr.md ), [Ελληνικά ](READMEgr.md ), [Magyar ](READMEhu.md ), [Bahasa Indonesia ](READMEid.md ), [日本語 ](READMEja.md ), [한국어 ](READMEkr.md ), [Nederlands ](READMEnl.md ), [Polski ](READMEpl.md ), [Português do Brasil ](READMEpt_BR.md ), [русский ](READMEru.md ), [Svenska ](READMEsv.md ), [Türkçe ](READMEtr.md ), [українська ](READMEuk.md ), [Tiếng Việt ](READMEvi.md )
2022-05-14 23:38:43 +02:00
2022-05-18 19:30:04 +03:00
# Return YouTube Dislike
2021-11-16 04:58:02 +01:00
<p align="center">
<b>Return YouTube Dislike is an open-source extension that returns the YouTube dislike count.</b><br>
Available for Chrome and Firefox as a Web Extension.<br>
Also available for other browsers as JS Userscript.<br><br>
<img width="400px" src="https://user-images.githubusercontent.com/18729296/141743755-2be73297-250e-4cd1-ac93-8978c5a39d10.png"/>
</p>
2021-11-15 09:06:59 +01:00
2021-11-16 04:58:02 +01:00
## The Story
2021-11-15 09:06:59 +01:00
2022-07-26 00:05:20 +02:00
On November 10th, 2021, Google [announced ](https://blog.youtube/news-and-events/update-to-youtube/ ) that the YouTube dislike count would be removed.
2021-12-24 14:19:49 +03:00
Additionally, the `dislike` field in the YouTube API was [removed ](https://support.google.com/youtube/thread/134791097/update-to-youtube-dislike-counts ) on December 13th, 2021, removing any ability to judge the quality of content before watching.
2021-11-15 09:06:59 +01:00
## What it Does
2025-07-13 09:03:21 -04:00
With the removal of dislike stats from the YouTube API, our backend switched to using a combination of scraped dislike stats and estimates extrapolated from extension user data.
2021-11-16 04:58:02 +01:00
2022-01-16 19:36:22 +03:00
[FAQ ](https://github.com/Anarios/return-youtube-dislike/blob/main/Docs/FAQ.md )
2021-11-28 03:46:23 +05:30
2021-11-16 04:58:02 +01:00
## Why it Matters
You can learn more at our website at: [returnyoutubedislike.com ](https://www.returnyoutubedislike.com/ )
2021-11-15 09:06:59 +01:00
2021-12-20 19:59:24 +07:00
## API documentation
2021-12-31 19:15:12 +00:00
Third-party use of this open API is allowed with the following restrictions:
2021-12-20 19:59:24 +07:00
2022-02-04 21:28:47 +03:00
- **Attribution**: This project should be clearly attributed with a link to [returnyoutubedislike.com ](https://returnyoutubedislike.com/ ).
2023-09-30 16:05:28 +05:00
- **Rate Limiting**: There are per client rate limits in place of 100 per minute and 10,000 per day. This will return a _429_ status code indicating that your application should back off.
2021-12-20 19:59:24 +07:00
2024-12-04 22:41:59 +07:00
The API is accessible over the following base URL:
2022-07-26 00:05:20 +02:00
https://returnyoutubedislikeapi.com
2021-12-20 19:59:24 +07:00
2024-12-04 22:41:59 +07:00
List of available endpoints is available here:
2021-12-20 19:59:24 +07:00
https://returnyoutubedislikeapi.com/swagger/index.html
### Get votes
2022-07-26 00:05:20 +02:00
2024-12-04 22:41:59 +07:00
Example to get votes of a given YouTube video ID:
2021-12-20 19:59:24 +07:00
`/votes?videoId=kxOuG8jMIgI`
```json
{
2022-07-26 00:05:20 +02:00
"id" : "kxOuG8jMIgI" ,
2025-07-13 11:02:46 -04:00
"dateCreated" : "2022-04-09T21:44:20.5103Z" ,
"likes" : 31885 ,
"rawDislikes" : 31946 ,
"rawLikes" : 457 ,
"dislikes" : 579721 ,
"rating" : 1.2085329444119253 ,
"viewCount" : 3762293 ,
2022-07-26 00:05:20 +02:00
"deleted" : false
2021-12-20 19:59:24 +07:00
}
```
2025-07-13 09:03:21 -04:00
A non-existent YouTube ID will return status code _404_ "Not Found".
An incorrectly formatted YouTube ID will return status code _400_ "Bad Request".
2021-12-20 21:20:53 +03:00
2022-01-03 11:39:21 +03:00
<!---
2021-12-20 19:59:24 +07:00
## API documentation
2021-12-27 14:36:38 -05:00
You can view all documentation on our website.
2023-12-02 01:21:40 -06:00
[https://returnyoutubedislike.com/docs/ ](https://returnyoutubedislike.com/docs/ ) -->
2021-12-20 21:20:53 +03:00
2021-11-28 03:46:23 +05:30
## Contributing
2021-11-27 23:14:20 +03:00
2022-04-18 15:26:52 +02:00
Please read the [contribution guide ](https://github.com/Anarios/return-youtube-dislike/blob/main/CONTRIBUTING.md ).
2021-11-27 23:14:20 +03:00
2022-01-08 23:31:44 +05:30
## Support this project!
2021-11-23 19:09:33 +03:00
2022-01-08 23:31:44 +05:30
You can support this project by donating to us on the link below:
2022-01-09 11:12:47 +05:30
2021-12-13 15:52:41 +03:00
[Donate ](https://returnyoutubedislike.com/donate )
2021-11-24 01:10:35 +03:00
2021-12-15 03:10:03 +03:00
## Sponsors
2022-07-26 00:05:20 +02:00
2025-07-13 21:39:44 +02:00
[Become our sponsor and be featured in repository and on the website ](https://www.patreon.com/join/returnyoutubedislike/checkout?rid=8008601 )