action listennotes_get_regions { label: "Fetch a list of supported countries/regions for best podcasts" description: "It returns a dictionary of country codes (e.g., us, gb...) & country names (United States, United Kingdom...). The country code is used in the query parameter **region** of `GET /best_podcasts`.\n" provider: listennotes method: GET path: "/regions" encoding: json output: { type: "object" required: ["regions"] properties: { regions: { type: "object" } } } }