GET
/
api
/
teams
/
{teamId}
/
contacts
curl --request GET \
  --url https://firstquadrant.ai/api/teams/{teamId}/contacts \
  --header 'Bearer API key: <api-key>'
[
  {
    "id": "con_qxwVhUwAj3ijxWXstmCNvIII",
    "createdAt": "2024-05-12T00:00:00.000Z",
    "updatedAt": "2024-05-12T00:00:00.000Z",
    "blockedAt": "2024-05-12T00:00:00.000Z",
    "name": "Anand Chowdhary",
    "nickname": "Anand",
    "bio": "Founder, CTO, CPO of FirstQuadrant. GitHub Star, Forbes 30 Under 30, Y Combinator.",
    "avatar": "https://firstquadrant.ai/avatar.jpg",
    "website": "https://firstquadrant.ai",
    "location": "San Francisco, CA, USA",
    "timeZone": "America/Los_Angeles",
    "city": "San Francisco",
    "state": "California",
    "countryCode": "US",
    "latitude": 37.7749,
    "longitude": -122.4194,
    "employmentTitle": "Chief Technology Officer",
    "employmentSeniority": "c_suite",
    "companyId": "com_qxwVhUwAj3ijxWXstmCNvIII",
    "rootContactId": "rcn_qxwVhUwAj3ijxWXstmCNvIII"
  }
]

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.

Path Parameters

teamId
string
required

Team ID, starting with tea_

Query Parameters

take
integer
default:25

The number of items to return per page.

Required range: x <= 100
startingAfter
string

ID of the item to start the pagination after (not inclusive).

q
string

Search query to filter items by.

orderBy
string

The field to order items by (e.g., createdAt).

sort
enum<string>

The direction to sort items by.

Available options:
asc,
desc

Response

200 - application/json
Array of contacts

The response is of type object[].