/users/{id}
Summary
Gets summary information for a set of users.Parameters
id
- A single primary key identifier or a vectorized, semicolon-delimited list of identifiers.
- string
fromdate (optional)
- Unix timestamp of the minimum creation date on a returned item.
- unix epoch date, range [0, 253,402,300,799]
jsonp (optional)
- Just so we can serialize it for caching purposes
- string
max (optional)
- Maximum of the range to include in the current sort.
- an integer, a unix epoch date, or a string
min (optional)
- Minimum of the range to include in the current sort.
- an integer, a unix epoch date, or a string
order (optional)
- How the current sort should be ordered.
- one of desc (default), or asc
page (optional)
- The pagination offset for the current collection. Affected by the specified pagesize.
- 32-bit signed integer
pagesize (optional)
- The number of collection results to display during pagination. Should be between 0 and 100 inclusive.
- 32-bit signed integer
sort (optional)
- How a collection should be sorted.
- one of reputation (default), creation, or name
todate (optional)
- Unix timestamp of the maximum creation date on a returned item.
- unix epoch date, range [0, 253,402,300,799]
Returns
{
"total": {
"description": "total number of items in this sequence",
"values": "32-bit integer, range [0, 2,147,483,647]",
"optional": false
},
"page": {
"description": "page of the total collection returned",
"values": "32-bit integer, range [1, 2,147,483,647]",
"optional": false
},
"pagesize": {
"description": "size of each page returned from the collection",
"values": "32-bit integer, range [0, 100]",
"optional": false
},
"users": [
{
"user_id": {
"description": "id of the user",
"values": "32-bit signed integer",
"optional": false
},
"user_type": {
"description": "type of the user",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": false
},
"creation_date": {
"description": "date user was created",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
},
"display_name": {
"description": "displayable name of the user",
"values": "string",
"optional": false,
"suggested_buffer_size": 40
},
"reputation": {
"description": "reputation of the user",
"values": "32-bit signed integer",
"optional": false
},
"email_hash": {
"description": "email hash, suitable for fetching a gravatar",
"values": "string",
"optional": false,
"suggested_buffer_size": 32
},
"age": {
"description": "age of the user",
"values": "32-bit signed integer",
"optional": true
},
"last_access_date": {
"description": "last date this user accessed the site",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
},
"website_url": {
"description": "user's website",
"values": "string",
"optional": true,
"suggested_buffer_size": 200
},
"location": {
"description": "user's location",
"values": "string",
"optional": true,
"suggested_buffer_size": 100
},
"about_me": {
"description": "user's about me blurb",
"values": "string",
"optional": true,
"suggested_buffer_size": 3000
},
"question_count": {
"description": "number of questions asked",
"values": "32-bit signed integer",
"optional": false
},
"answer_count": {
"description": "number of answers posted",
"values": "32-bit signed integer",
"optional": false
},
"view_count": {
"description": "number of times profile viewed",
"values": "32-bit signed integer",
"optional": false
},
"up_vote_count": {
"description": "number of times this user has up voted",
"values": "32-bit signed integer",
"optional": false
},
"down_vote_count": {
"description": "number of times this user has down voted",
"values": "32-bit signed integer",
"optional": false
},
"accept_rate": {
"description": "user's answer acceptance rate",
"values": "32-bit signed integer",
"optional": true
},
"association_id": {
"description": "identifier for this user across all SE sites",
"values": "guid, 8-4-4-4-12 format",
"optional": true
},
"user_questions_url": {
"description": "link to the questions the user has asked",
"values": "string",
"optional": false
},
"user_answers_url": {
"description": "link to the answers the user has posted",
"values": "string",
"optional": false
},
"user_favorites_url": {
"description": "link to the questions the user has favorited",
"values": "string",
"optional": false
},
"user_tags_url": {
"description": "link to a list of tags the user has participated in",
"values": "string",
"optional": false
},
"user_badges_url": {
"description": "link to a list of badges the user has receieved",
"values": "string",
"optional": false
},
"user_timeline_url": {
"description": "link to the timeline of this user",
"values": "string",
"optional": false
},
"user_mentioned_url": {
"description": "link to a list of comments which mention this user",
"values": "string",
"optional": false
},
"user_comments_url": {
"description": "link to a list of comments this user has made",
"values": "string",
"optional": false
},
"user_reputation_url": {
"description": "link to a list of rep_changes that this user has experienced",
"values": "string",
"optional": false
},
"badge_counts": {
"gold": {
"description": "number of gold badges received",
"values": "32-bit signed integer",
"optional": true
},
"silver": {
"description": "number of silver badges received",
"values": "32-bit signed integer",
"optional": true
},
"bronze": {
"description": "number of bronze badges received",
"values": "32-bit signed integer",
"optional": true
}
},
"timed_penalty_date": {
"description": "date until which this user is in the \"penalty box\"",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
}
}
]
}