Python
import requests
url = "https://app.langwatch.ai/api/teams/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.langwatch.ai/api/teams/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://app.langwatch.ai/api/teams/{id} \
--header 'Authorization: Bearer <token>'Teams
Get team
Get a team by its id
GET
/
api
/
teams
/
{id}
Python
import requests
url = "https://app.langwatch.ai/api/teams/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.langwatch.ai/api/teams/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://app.langwatch.ai/api/teams/{id} \
--header 'Authorization: Bearer <token>'Last modified on May 14, 2026
Was this page helpful?
⌘I