Get team

Fetch a team by slug.

Endpoint

GET /api/v1/teams/{team_slug}
Team Member

Usage

curl \
  --header "Authorization: Bearer $PEARING_API_TOKEN" \
  "$PEARING_API_URL/v1/teams/platform"

Success

200 OK with team record.

{
  "uuid": "...",
  "slug": "platform",
  "name": "Platform"
}

Errors

  • 404 Not Found when team slug does not exist.

Common auth errors are documented on the API overview page.