2021-11-23 23:23:55 +03:00
[](https://chrome.google.com/webstore/detail/youtube-dislike-button/gebbhagfogifgggkldgodflihgfeippi/)
[](https://chrome.google.com/webstore/detail/youtube-dislike-button/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
2024-06-16 22:11:44 +02:00
Read this in other languages: [русский ](READMEru.md ), [Español ](READMEes.md ), [Nederlands ](READMEnl.md ), [Français ](READMEfr.md ), [日本語 ](READMEja.md ), [Türkçe ](READMEtr.md ), [українська ](READMEuk.md ), [Deutsch ](READMEde.md ), [Ελληνικά ](READMEgr.md ), [Svenska ](READMEsv.md ), [中文 ](READMEcn.md ), [Polski ](READMEpl.md ), [Português do Brasil ](READMEpt_BR.md ), [Magyar], [Danish ](READMEda.md )
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
2022-01-02 22:40:43 +03:00
With the removal of dislike stats from the YouTube API, our backend switched to using a combination of scraped dislike stats, 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
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
List of available endpoints is available here:
https://returnyoutubedislikeapi.com/swagger/index.html
### Get votes
2022-07-26 00:05:20 +02:00
2021-12-20 19:59:24 +07:00
Example to get votes of a given YouTube video ID:
`/votes?videoId=kxOuG8jMIgI`
```json
{
2022-07-26 00:05:20 +02:00
"id" : "kxOuG8jMIgI" ,
"dateCreated" : "2021-12-20T12:25:54.418014Z" ,
"likes" : 27326 ,
"dislikes" : 498153 ,
"rating" : 1.212014408444885 ,
"viewCount" : 3149885 ,
"deleted" : false
2021-12-20 19:59:24 +07:00
}
```
2024-06-16 08:24:47 -04:00
Non-existent YouTube ID will return status code _404_ "Not Found".
2022-07-26 00:05:20 +02:00
Wrong formed YouTube ID will return _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.
2022-01-03 11:39:21 +03:00
[https://returnyoutubedislike.com/documentation/ ](https://returnyoutubedislike.com/documentation/ ) -->
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
2021-12-20 13:46:40 +03:00
[Seed4.Me VPN ](https://www.seed4.me/users/register?gift=ReturnYoutubeDislike )
2021-12-15 03:10:03 +03:00
2022-04-26 22:05:36 +02:00
[Become our sponsor ](https://www.patreon.com/join/returnyoutubedislike/checkout?rid=8008601 )