API Endpoint: List Users
Returns a list of users sorted by reputation.
Request
GET /api/0.1/users GET Parameters
| offset | Optional. Integer. The number of users to skip from the beginning. Range: [0, infinity). Defaults to 0. |
| limit | Optional. Integer. The number of users to include in the response. Range: [1, 200]. Defaults to 20. |
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Request
/api/0.1/users?offset=5&limit=2
Example Response
1 2 3 4 5 6 7 8 9 10 11 12 | [
{
"userid": 18,
"username": "Walter Galan",
"reputation": 21047
},
{
"userid": 12,
"username": "Ben Eisenman",
"reputation": 18421
}
]
|