List teams (public)
GET
/teams
const url = 'https://shoehorn.example.com/api/v1/teams?limit=20';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://shoehorn.example.com/api/v1/teams?limit=20'Returns teams visible to the current user.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit
integer
cursor
string
Responses
Section titled “ Responses ”List of teams