> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User Info

Provides publicly available information about someone with a GitHub account.

GitHub Apps with the `Plan` user permission can use this endpoint to retrieve information about a user's GitHub plan. The GitHub App must be authenticated as a user. See "[Identifying and authorizing users for GitHub Apps](https://docs.github.com/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)" for details about authentication. For an example response, see 'Response with GitHub plan information' below"

The `email` key in the following response is the publicly visible email address from your GitHub [profile page](https://github.com/settings/profile). When setting up your profile, you can select a primary email address to be “public” which provides an email entry for this endpoint. If you do not set a public email address for `email`, then it will have a value of `null`. You only see publicly visible email addresses when authenticated with GitHub. For more information, see [Authentication](https://docs.github.com/rest/overview/resources-in-the-rest-api#authentication).

The Emails API enables you to list all of your email addresses, and toggle a primary email to be visible publicly. For more information, see "[Emails API](https://docs.github.com/rest/reference/users#emails)".

<Note>
  External Documentation

  To learn more, visit the [GitHub documentation](https://docs.github.com/rest/reference/users#get-a-user).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                             |
  | --------- | --------------------------------------- |
  | Username  | The handle for the GitHub user account. |
</div>

## Example Output

```json theme={"dark"}
{
	"login": "<string>",
	"id": 33459870,
	"node_id": "<string>",
	"avatar_url": "<string>",
	"gravatar_id": "<string>",
	"url": "<string>",
	"html_url": "<string>",
	"followers_url": "<string>",
	"following_url": "<string>",
	"gists_url": "<string>",
	"starred_url": "<string>",
	"subscriptions_url": "<string>",
	"organizations_url": "<string>",
	"repos_url": "<string>",
	"events_url": "<string>",
	"received_events_url": "<string>",
	"type": "<string>",
	"user_view_type": "<string>",
	"site_admin": false,
	"name": "<string>",
	"company": "<string>",
	"blog": "<string>",
	"location": "<string>",
	"email": "<string>",
	"hireable": null,
	"bio": "<string>",
	"twitter_username": null,
	"public_repos": 38,
	"public_gists": 2,
	"followers": 3,
	"following": 2,
	"created_at": "2019-11-08T14:56:46Z",
	"updated_at": "2025-03-23T10:03:21Z",
	"private_gists": 2,
	"total_private_repos": 61,
	"owned_private_repos": 10,
	"disk_usage": 71264,
	"collaborators": 0,
	"two_factor_authentication": true,
	"plan": {
		"name": "<string>",
		"space": 962105402,
		"collaborators": 2,
		"private_repos": 468
	}
}
```

## Workflow Library Example

[Get User Info with Github and Send Results Via Email](https://library.blinkops.com/workflows/get-user-info-with-github-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-user-info-with-github-and-send-results-via-email/canvas" />
</div>
