Skip to main content
GET
/
api
/
v1
/
contacts
Find contacts
curl --request GET \
  --url http://localhost:3000/api/v1/contacts
{
  "contacts": [
    {
      "id": "68234731e6074232892d18c4",
      "companyName": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "address": "<string>",
      "postCode": "3700 Spiez",
      "position": "<string>",
      "email": "jsmith@example.com",
      "mobile": "<string>",
      "phone": "<string>",
      "website": "<string>",
      "category": "clients",
      "formOfAddress": "<string>",
      "note": "<string>",
      "vatNumber": "<string>",
      "country": "<string>",
      "secondaryAddressLine": "<string>"
    }
  ]
}

Query Parameters

limit
number

Pagination limit for the results

skip
number

Pagination offset for the results

category
enum<string>

Optionally filters contacts by category

Available options:
clients,
suppliers,
partners,
team,
leads

Response

Successfully returns a list of contacts.

contacts
Contact · object[]