Skip to main content
GET
/
v1
/
users
/
me
/
teams
Get My Teams
curl --request GET \
  --url https://api.example.com/v1/users/me/teams
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "role": "OWNER",
    "created_at": 123,
    "updated_at": 123,
    "team_name": "<string>",
    "team_description": "<string>"
  }
]

Response

200 - application/json

Successful Response

id
string<uuid>
required
team_id
string<uuid>
required
user_id
string<uuid>
required
role
enum<string>
required

Team membership roles.

Available options:
OWNER,
ADMIN,
MEMBER
created_at
integer
required
updated_at
integer
required
team_name
string
required
team_description
string | null
required
Last modified on April 21, 2026