{"id":19774557,"url":"https://github.com/yeukfei02/deno-giphy-api","last_synced_at":"2026-04-30T19:31:26.658Z","repository":{"id":56472159,"uuid":"265786417","full_name":"yeukfei02/deno-giphy-api","owner":"yeukfei02","description":"giphy api in deno","archived":false,"fork":false,"pushed_at":"2024-03-02T11:06:42.000Z","size":36,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-09T00:38:04.670Z","etag":null,"topics":["deno","giphy","giphy-api","typescript"],"latest_commit_sha":null,"homepage":"https://deno.land/x/deno_giphy_api","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yeukfei02.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-21T07:42:13.000Z","updated_at":"2020-11-05T12:23:36.000Z","dependencies_parsed_at":"2025-02-28T05:48:29.460Z","dependency_job_id":"60254642-e4d1-49de-97a8-4eb189c13146","html_url":"https://github.com/yeukfei02/deno-giphy-api","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/yeukfei02/deno-giphy-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeukfei02%2Fdeno-giphy-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeukfei02%2Fdeno-giphy-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeukfei02%2Fdeno-giphy-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeukfei02%2Fdeno-giphy-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yeukfei02","download_url":"https://codeload.github.com/yeukfei02/deno-giphy-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeukfei02%2Fdeno-giphy-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32475191,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deno","giphy","giphy-api","typescript"],"created_at":"2024-11-12T05:13:18.469Z","updated_at":"2026-04-30T19:31:26.634Z","avatar_url":"https://github.com/yeukfei02.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# deno-giphy-api\n\n[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/deno_giphy_api/mod.ts)\n\n[![nest badge](https://nest.land/badge.svg)](https://nest.land/package/deno-giphy-api)\n\ngiphy api in deno\n\n```ts\n// pick 1 to import\nimport * as giphy from \"https://deno.land/x/deno_giphy_api/mod.ts\";\nimport * as giphy from \"https://x.nest.land/deno-giphy-api/mod.ts\";\nimport * as giphy from \"https://denopkg.com/yeukfei02/deno-giphy-api/mod.ts\";\n```\n\n## searchGif\n\n```ts\n// key and q are mandatory\nconst params = {\n  api_key: \"apiKey\",\n  q: \"dog\",\n};\n\n// limit and offset are optional, default limit = 25, offset = 0\nconst params = {\n  api_key: \"apiKey\",\n  q: \"dog\",\n  limit: 3,\n  offset: 5,\n};\n\nconst gif = await giphy.searchGif(params);\n```\n\n## searchSticker\n\n```ts\n// key and q are mandatory\nconst params = {\n  api_key: \"apiKey\",\n  q: \"dog\",\n};\n\n// limit and offset are optional, default limit = 25, offset = 0\nconst params = {\n  api_key: \"apiKey\",\n  q: \"dog\",\n  limit: 3,\n  offset: 5,\n};\n\nconst sticker = await giphy.searchSticker(params);\n```\n\n## searchTrendingGif\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\n// limit and offset are optional, default limit = 25, offset = 0\nconst params = {\n  api_key: \"apiKey\",\n  limit: 3,\n  offset: 5,\n};\n\nconst gif = await giphy.searchTrendingGif(params);\n```\n\n## searchTrendingSticker\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\n// limit and offset are optional, default limit = 25, offset = 0\nconst params = {\n  api_key: \"apiKey\",\n  limit: 3,\n  offset: 5,\n};\n\nconst sticker = await giphy.searchTrendingSticker(params);\n```\n\n## translateGif\n\n```ts\n// key and s are mandatory\nconst params = {\n  api_key: \"apiKey\",\n  s: \"dog\",\n};\n\n// weirdness is optional, 0-10\nconst params = {\n  api_key: \"apiKey\",\n  s: \"dog\",\n  weirdness: 10,\n};\n\nconst gif = await giphy.translateGif(params);\n```\n\n## translateSticker\n\n```ts\n// key and s are mandatory\nconst params = {\n  api_key: \"apiKey\",\n  s: \"dog\",\n};\n\n// weirdness is optional, 0-10\nconst params = {\n  api_key: \"apiKey\",\n  s: \"dog\",\n  weirdness: 10,\n};\n\nconst sticker = await giphy.translateSticker(params);\n```\n\n## randomGif\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\n// tag is optional\nconst params = {\n  api_key: \"apiKey\",\n  tag: \"dog\",\n};\n\nconst gif = await giphy.randomGif(params);\n```\n\n## randomSticker\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\n// tag is optional\nconst params = {\n  api_key: \"apiKey\",\n  tag: \"dog\",\n};\n\nconst sticker = await giphy.randomSticker(params);\n```\n\n## randomId\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\nconst randomId = await giphy.randomId(params);\n```\n\n## getGifById\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\nconst id = \"gifId\";\nconst gif = await giphy.getGifById(id, params);\n```\n\n## getGifsById\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\nconst idsList = [\"xT4uQulxzV39haRFjG\", \"3og0IPxMM0erATueVW\"];\nconst gifs = await giphy.getGifsById(idsList, params);\n```\n\n## getCategories\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\nconst gifs = await giphy.getCategories(params);\n```\n\n## getAutocomplete\n\n```ts\n// key and q are mandatory\nconst params = {\n  api_key: \"apiKey\",\n  q: \"dog\",\n};\n\nconst searchTags = await giphy.getAutocomplete(params);\n```\n\n## getSearchSuggestions\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\nconst term = \"dog\";\n\nconst searchSuggestions = await giphy.getSearchSuggestions(term, params);\n```\n\n## getTrendingSearchTerm\n\n```ts\n// key is mandatory\nconst params = {\n  api_key: \"apiKey\",\n};\n\nconst trendingSearchTerm = await giphy.getTrendingSearchTerm(params);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyeukfei02%2Fdeno-giphy-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyeukfei02%2Fdeno-giphy-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyeukfei02%2Fdeno-giphy-api/lists"}