Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/varshil-shah/pinned-github-repos

Get all pinned github repositories
https://github.com/varshil-shah/pinned-github-repos

functions github nodejs serverless

Last synced: about 14 hours ago
JSON representation

Get all pinned github repositories

Awesome Lists containing this project

README

        

### Get pinned github repositories

The projects in build using NodeJS and AWS Serverless Framework. It's a simple API that fetches the pinned repositories of a user from Github.

Make a request on this route with the username of the user you want to get the pinned repositories.

```plaintext
https://zu6jm2s7ba.execute-api.us-east-1.amazonaws.com/dev/user/{USERNAME}
```

The following is the response format:

```json
{
"status": "success",
"results": 6,
"data": [
{
"name": "",
"description": "",
"repositoryLink": "",
"stars": 1,
"forkCount": 1,
"projectLink": "",
"githubBannerImage": "",
"primaryLanguage": {
"name": "JavaScript",
"color": "#f1e05a"
}
}
]
}
```