curl --request GET \
--url 'https://api.stateset.com/api/v1/companies/{id}/contacts' \
--header "Authorization: Bearer $STATESET_API_KEY"
[
{
"email": "ada.lovelace@example.com",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"title": "Replacement tent pole set"
}
]
List contacts
List contacts
GET
/
api
/
v1
/
companies
/
{id}
/
contacts
curl --request GET \
--url 'https://api.stateset.com/api/v1/companies/{id}/contacts' \
--header "Authorization: Bearer $STATESET_API_KEY"
[
{
"email": "ada.lovelace@example.com",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"title": "Replacement tent pole set"
}
]
Path parameters
string
required
Company ID
Response
ContactResponse[] — each element:
string,null
string
required
string
required
string,null
Status codes
| Code | Meaning |
|---|---|
200 | — |
curl --request GET \
--url 'https://api.stateset.com/api/v1/companies/{id}/contacts' \
--header "Authorization: Bearer $STATESET_API_KEY"
[
{
"email": "ada.lovelace@example.com",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"title": "Replacement tent pole set"
}
]
Last modified on August 31, 2026