Reference
Remy Reference/agent/searchYoutubeTrends
?

searchYoutubeTrends

Retrieve trending videos on YouTube by category and region.
mindstudio.searchYoutubeTrends({ bp, hl, gl }) → Result

Returns trending YouTube videos by category and region.

Parameters
bp
string
RequiredTrending category: "now" (trending now), "music", "gaming", or "films"
nowmusicgamingfilms
hl
string
RequiredLanguage code (e.g. "en")
gl
string
RequiredCountry code (e.g. "US")
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.searchYoutubeTrends({
  bp: /* ... */,
  hl: /* ... */,
  gl: /* ... */
});