You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 25, 2023. It is now read-only.
* @description Search all GIPHY GIFs for a word or phrase. Punctuation will be stripped and ignored. Use a plus or url encode for phrases. Example paul+rudd, ryan+gosling or american+psycho..
* @description The translate API draws on search, but uses the GIPHY `special sauce` to handle translating from one vocabulary to another. In this case, words and phrases to GIF.
301
+
*/
302
+
exportnamespaceTranslateGif{
303
+
exporttypeRequestQuery={s: string};
304
+
exporttypeRequestBody=never;
305
+
exporttypeResponseBody={data?: Gif,meta?: Meta};
306
+
}
307
+
308
+
/**
309
+
* @tags gifs
310
+
* @name trendingGifs
311
+
* @summary Trending GIFs
312
+
* @request GET:/gifs/trending
313
+
* @description Fetch GIFs currently trending online. Hand curated by the GIPHY editorial team. The data returned mirrors the GIFs showcased on the GIPHY homepage. Returns 25 results by default..
* @description The translate API draws on search, but uses the GIPHY `special sauce` to handle translating from one vocabulary to another. In this case, words and phrases to GIFs..
368
+
*/
369
+
exportnamespaceTranslateSticker{
370
+
exporttypeRequestQuery={s: string};
371
+
exporttypeRequestBody=never;
372
+
exporttypeResponseBody={data?: Gif,meta?: Meta};
373
+
}
374
+
375
+
/**
376
+
* @tags stickers
377
+
* @name trendingStickers
378
+
* @summary Trending Stickers
379
+
* @request GET:/stickers/trending
380
+
* @description Fetch Stickers currently trending online. Hand curated by the GIPHY editorial team. Returns 25 results by default..
0 commit comments