GET /api/repos
Get a list of my most popular GitHub projects. Updates every 2 hours.
Key | Type | Description | Example |
---|---|---|---|
name |
string |
Repository name | formik |
owner |
string |
Repository owner | jaredpalmer |
description |
string |
Repository description | Build forms in React, without the tears " |
url |
string |
Repository URL | https://github.com/jaredpalmer/formik |
stars |
number |
GitHub star count | 23208 |
languages |
Record<string, number> |
Programming languages in use + line count. | { JavaScript: 121162, CSS: 530, } |
Example Response:
[
{
name: "formik",
owner: "formik",
description: "Build forms in React, without the tears 😠",
url: "https://github.com/formik/formik",
stars: 23208,
languages: {
TypeScript: 177029,
JavaScript: 3190,
},
},
{
name: "razzle",
owner: "jaredpalmer",
description: "✨ Create server-rendered universal JavaScript applications with no configuration",
url: "https://github.com/jaredpalmer/razzle",
stars: 9200,
languages: {
JavaScript: 121162,
CSS: 530,
},
},
// ..
]