@@ -112,32 +112,32 @@ impl Client<'_> {
112112 self . post ( "episodes" , parameters) . await
113113 }
114114
115- /// Calls [`GET /curated_podcasts/{id}`](https://www.listennotes.com/api/docs/#post -api-v2-curated_podcasts-id) with supplied parameters.
115+ /// Calls [`GET /curated_podcasts/{id}`](https://www.listennotes.com/api/docs/#get -api-v2-curated_podcasts-id) with supplied parameters.
116116 pub async fn fetch_curated_podcasts_list_by_id ( & self , id : & str , parameters : & Value ) -> Result < Response > {
117117 self . get ( & format ! ( "curated_podcasts/{}" , id) , parameters) . await
118118 }
119119
120- /// Calls [`GET /curated_podcasts`](https://www.listennotes.com/api/docs/#post -api-v2-curated_podcasts) with supplied parameters.
120+ /// Calls [`GET /curated_podcasts`](https://www.listennotes.com/api/docs/#get -api-v2-curated_podcasts) with supplied parameters.
121121 pub async fn fetch_curated_podcasts_lists ( & self , parameters : & Value ) -> Result < Response > {
122122 self . get ( "curated_podcasts" , parameters) . await
123123 }
124124
125- /// Calls [`GET /genres`](https://www.listennotes.com/api/docs/#post -api-v2-genres) with supplied parameters.
125+ /// Calls [`GET /genres`](https://www.listennotes.com/api/docs/#get -api-v2-genres) with supplied parameters.
126126 pub async fn fetch_podcast_genres ( & self , parameters : & Value ) -> Result < Response > {
127127 self . get ( "genres" , parameters) . await
128128 }
129129
130- /// Calls [`GET /regions`](https://www.listennotes.com/api/docs/#post -api-v2-regions) with supplied parameters.
130+ /// Calls [`GET /regions`](https://www.listennotes.com/api/docs/#get -api-v2-regions) with supplied parameters.
131131 pub async fn fetch_podcast_regions ( & self , parameters : & Value ) -> Result < Response > {
132132 self . get ( "regions" , parameters) . await
133133 }
134134
135- /// Calls [`GET /languages`](https://www.listennotes.com/api/docs/#post -api-v2-languages) with supplied parameters.
135+ /// Calls [`GET /languages`](https://www.listennotes.com/api/docs/#get -api-v2-languages) with supplied parameters.
136136 pub async fn fetch_podcast_languages ( & self , parameters : & Value ) -> Result < Response > {
137137 self . get ( "languages" , parameters) . await
138138 }
139139
140- /// Calls [`GET /just_listen`](https://www.listennotes.com/api/docs/#post -api-v2-just_listen) with supplied parameters.
140+ /// Calls [`GET /just_listen`](https://www.listennotes.com/api/docs/#get -api-v2-just_listen) with supplied parameters.
141141 pub async fn just_listen ( & self , parameters : & Value ) -> Result < Response > {
142142 self . get ( "just_listen" , parameters) . await
143143 }
0 commit comments