GET
/
teams
List teams
curl --request GET \
  --url https://api.fathom.ai/external/v1/teams \
  --header 'X-Api-Key: <api-key>'
{
  "limit": 123,
  "next_cursor": "<string>",
  "items": [
    {
      "name": "Sales",
      "created_at": "2023-11-10T12:00:00Z"
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Include your API key in the X-Api-Key header of every request.

Query Parameters

cursor
string

Cursor for pagination.

Response

200
application/json

Paginated list of teams.

The response is of type object.