GET
/
api
/
teams
/
me
curl --request GET \
  --url https://firstquadrant.ai/api/teams/me \
  --header 'Bearer API key: <api-key>'
{
  "id": "tea_qxwVhUwAj3ijxWXstmCNvIII",
  "createdAt": "2024-05-12T00:00:00.000Z",
  "updatedAt": "2024-05-12T00:00:00.000Z",
  "name": "My Team",
  "slug": "my-team"
}

Authorizations

Bearer API key
string
header
required

The API key used to authenticate requests, learn how to generate an API key on the Authentication page.

Response

200 - application/json
Team object
id
string
required

The unique ID of the team, starting with tea_.

Example:

"tea_qxwVhUwAj3ijxWXstmCNvIII"

createdAt
string
required

The date and time the team was created.

Example:

"2024-05-12T00:00:00.000Z"

updatedAt
string
required

The date and time the team was last updated.

Example:

"2024-05-12T00:00:00.000Z"

name
string
required

The name of the team.

Example:

"My Team"

slug
string
required

The unique slug of the team used is URLs in the FirstQuadrant app, e.g., https://firstquadrant.ai/my-team.

Example:

"my-team"