API Endpoint: List Teams
Get a list of all teams.
Request
GET /api/0.1/teams Route Parameters
| offset | Optional. Integer. The number of teams to skip from the beginning. Range: [0, infinity). Defaults to 0. |
| limit | Optional. Integer. The number of teams to include in the response. Range: [1, 20]. Defaults to 20. |
GET Parameters
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [
{
"teamid": 1,
"imageid": 63548,
"name": "iFixit",
"description": "We're just some folks with repair on our minds...",
"owner": 17,
"location": "35.2686601076,-120.669631958",
"reputation": "81845",
"member_count": 28
},
{
"teamid": 303,
"imageid": null,
"name": "Tangerime",
"description": "We work on software. Right now we're playing around with http://getpunchd.com.",
"owner": 109909,
"location": null,
"reputation": "333",
"member_count": 1
}
]
|