Skip to content

Instantly share code, notes, and snippets.

@danthemango
Last active January 4, 2026 04:52
Show Gist options
  • Select an option

  • Save danthemango/50ef0b9898800eea7e75225e59ef9a7d to your computer and use it in GitHub Desktop.

Select an option

Save danthemango/50ef0b9898800eea7e75225e59ef9a7d to your computer and use it in GitHub Desktop.
get a list of all free shows with filipino subtitles
// 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)
@danthemango
Copy link
Author

danthemango commented Jan 3, 2026

All free shows with Filipino Subtitles:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment