Last active
January 4, 2026 04:52
-
-
Save danthemango/50ef0b9898800eea7e75225e59ef9a7d to your computer and use it in GitHub Desktop.
get a list of all free shows with filipino subtitles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // while browsing the "shows" section, | |
| // in the devtools network tab I found the "graphql" endpoint request, | |
| // right click > save to temporary variable: | |
| temp1.collection.rails.map(rail => rail.assets.items).flat().filter(show => show.monetization.type === 'free').filter(show => show.subtitleLanguages.includes('Filipino')).map(show => show.title) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
All free shows with Filipino Subtitles: