provider users GET
/users/{username}/hovercard @utdk/github
/users/{username}/hovercard Get contextual information for a user
Provides hovercard information. You can find out more about someone in relation to their pull requests, issues, repositories, and organizations.
The `subject_type` and `subject_id` parameters provide context for the person's hovercard, which returns more information than without the parameters. For example, if you wanted to find out more about `octocat` who owns the `Spoon-Knife` repository, you would use a `subject_type` value of `repository` and a `subject_id` value of `1300192` (the ID of the `Spoon-Knife` repository).
OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
- username path required
- The handle for the GitHub user account.
- string
- subject_type query
- Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, `pull_request`. **Required** when using `subject_id`.
- enum: organization, repository, issue, pull_request
- subject_id query
- Uses the ID for the `subject_type` you specified. **Required** when using `subject_type`.
- string
Try it
Authentication
Configure credentials for GitHub v3 REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import github from '@utdk/github';
await github.users.getContextForUser()