{% extends "docs/base.html" %} {% block docs_content %}
Fetch a team by slug.
GET /api/v1/teams/{team_slug}curl \
--header "Authorization: Bearer $PEARING_API_TOKEN" \
"$PEARING_API_URL/v1/teams/platform"200 OK with team record.
{
"uuid": "...",
"slug": "platform",
"name": "Platform"
}404 Not Found when team slug does not exist.Common auth errors are documented on the API overview page.