Skip to main content
GET
/
team
Get team details
curl --request GET \
  --url https://api.lettermint.co/v1/team \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "plan": "free",
  "tier": 300,
  "verified_at": "2023-11-07T05:31:56Z",
  "features": [
    "<string>"
  ],
  "addons": [
    {
      "type": "<string>",
      "expires_at": "<string>"
    }
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "domains_count": 123,
  "projects_count": 123,
  "members_count": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

include
string

Available includes are features, featuresCount, featuresExists, addons, addonsCount, addonsExists. You can include multiple options by separating them with a comma.

Response

200 - application/json

TeamData

id
string
required
name
string
required
plan
enum<string>
required
Available options:
free,
starter,
growth,
pro
tier
enum<integer>
required
Available options:
300,
10000,
50000,
125000,
500000,
750000,
1000000,
1500000
verified_at
string<date-time> | null
required
created_at
string<date-time>
required
features
string[]
addons
TeamAddonData · object[]
domains_count
integer
projects_count
integer
members_count
integer