{% extends "docs/base.html" %} {% block docs_content %}

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

Common auth errors are documented on the API overview page.

{% endblock %}