@@ -112,32 +112,32 @@ impl Client<'_> {
112
112
self . post ( "episodes" , parameters) . await
113
113
}
114
114
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.
116
116
pub async fn fetch_curated_podcasts_list_by_id ( & self , id : & str , parameters : & Value ) -> Result < Response > {
117
117
self . get ( & format ! ( "curated_podcasts/{}" , id) , parameters) . await
118
118
}
119
119
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.
121
121
pub async fn fetch_curated_podcasts_lists ( & self , parameters : & Value ) -> Result < Response > {
122
122
self . get ( "curated_podcasts" , parameters) . await
123
123
}
124
124
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.
126
126
pub async fn fetch_podcast_genres ( & self , parameters : & Value ) -> Result < Response > {
127
127
self . get ( "genres" , parameters) . await
128
128
}
129
129
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.
131
131
pub async fn fetch_podcast_regions ( & self , parameters : & Value ) -> Result < Response > {
132
132
self . get ( "regions" , parameters) . await
133
133
}
134
134
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.
136
136
pub async fn fetch_podcast_languages ( & self , parameters : & Value ) -> Result < Response > {
137
137
self . get ( "languages" , parameters) . await
138
138
}
139
139
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.
141
141
pub async fn just_listen ( & self , parameters : & Value ) -> Result < Response > {
142
142
self . get ( "just_listen" , parameters) . await
143
143
}
0 commit comments