{"id":16060986,"url":"https://github.com/jetsly/github-missing-api","last_synced_at":"2026-04-30T10:31:15.934Z","repository":{"id":76747331,"uuid":"199550727","full_name":"Jetsly/github-missing-api","owner":"Jetsly","description":":octocat: The missing APIs for GitHub","archived":false,"fork":false,"pushed_at":"2020-09-02T05:57:14.000Z","size":17,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-10T18:11:22.262Z","etag":null,"topics":["github","trending"],"latest_commit_sha":null,"homepage":"","language":"Go","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/Jetsly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2019-07-30T01:20:55.000Z","updated_at":"2020-07-13T12:53:20.000Z","dependencies_parsed_at":"2023-07-27T07:15:18.168Z","dependency_job_id":null,"html_url":"https://github.com/Jetsly/github-missing-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jetsly%2Fgithub-missing-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jetsly%2Fgithub-missing-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jetsly%2Fgithub-missing-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jetsly%2Fgithub-missing-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jetsly","download_url":"https://codeload.github.com/Jetsly/github-missing-api/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247312086,"owners_count":20918344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["github","trending"],"created_at":"2024-10-09T04:07:28.125Z","updated_at":"2026-04-30T10:31:15.878Z","avatar_url":"https://github.com/Jetsly.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eGithub Missing API\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e:octocat: A simple API  of Github.\u003c/p\u003e\n\n\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/huchenme/github-trending-api/blob/master/LICENSE)\n\n## docker\n```bash\n$ docker run --rm -it -p 8080:8000 ddotjs/github-missing-api \n```\n\n### API\n\n#### List Languages\n\nReceive popular languages and all languages.\n\n**URL Endpoint:**\n\n/trending/languages\n\n**Response:**\n\n```json\n[\n  {\n    \"id\": \"1c-enterprise\",\n    \"name\": \"1C Enterprise\"\n  },\n  {\n    \"id\": \"abap\",\n    \"name\": \"ABAP\"\n  },\n  {\n    \"id\": \"abnf\",\n    \"name\": \"ABNF\"\n  },\n  {\n    \"id\": \"actionscript\",\n    \"name\": \"ActionScript\"\n  }\n]\n```\n\n\n#### Trending Repositories\n\nReceive an array of trending repositories.\n\n**URL Endpoint:**\n\n/trending/repositories?language=go\u0026since=weekly\n\n**Parameters:**\n\n- `language`: **optional**, list trending repositories of certain programming languages.\n- `since`: **optional**, default to `daily`, possible values: `daily`, `weekly` and `monthly`.\n\n**Response:**\n\n```json\n[\n  ...\n  {\n    \"author\": \"google\",\n    \"name\": \"gvisor\",\n    \"avatar\": \"https://github.com/google.png\",\n    \"url\": \"https://github.com/google/gvisor\",\n    \"description\": \"Container Runtime Sandbox\",\n    \"language\": \"Go\",\n    \"languageColor\": \"#3572A5\",\n    \"stars\": 3320,\n    \"forks\": 118,\n    \"currentPeriodStars\": 1624,\n    \"builtBy\": [\n      {\n        \"href\": \"https://github.com/viatsko\",\n        \"avatar\": \"https://avatars0.githubusercontent.com/u/376065\",\n        \"username\": \"viatsko\"\n      }\n    ]\n  }\n  ...\n]\n```\n\n### Trending Developers\n\nReceive an array of trending developers.\n\n**URL Endpoint:**\n\n/trending/developers?language=javascript\u0026since=weekly\n\n**Parameters:**\n\n- `language`: **optional**, list trending repositories of certain programming languages.\n- `since`: **optional**, default to `daily`, possible values: `daily`, `weekly` and `monthly`.\n\n**Response:**\n\n```json\n[\n  {\n    \"username\": \"google\",\n    \"name\": \"Google\",\n    \"type\": \"organization\",\n    \"url\": \"https://github.com/google\",\n    \"avatar\": \"https://avatars0.githubusercontent.com/u/1342004\",\n    \"repo\": {\n      \"name\": \"traceur-compiler\",\n      \"description\": \"Traceur is a JavaScript.next-to-JavaScript-of-today compiler\",\n      \"url\": \"https://github.com/google/traceur-compiler\"\n    }\n  }\n]\n```\n\n\u003e `type` could be `organization` or `user`.\n\n\n## contributors\n\n* [github-trending-api](https://github.com/huchenme/github-trending-api)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetsly%2Fgithub-missing-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjetsly%2Fgithub-missing-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetsly%2Fgithub-missing-api/lists"}