API Endpoint: List Teams
Get a list of all teams.
Request
GET /api/1.0/teams GET 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. |
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Request
/api/1.0/teams?offset=4&limit=2
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":788,
"imageid":0,
"name":"iTweakTech Crew",
"description":"iTweakTech is an organization dedicated to repairing any and all electronic devices. Join us today!",
"owner":445698,
"location":null,
"reputation":"517",
"member_count":1
},
{
"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":"355",
"member_count":1
}
]
|