Skip to main content
GET
/
v1
/
contacts
Find contacts
curl --request GET \
  --url https://api.infinity.swiss/v1/contacts \
  --header 'x-api-token: <api-key>'
{
  "contacts": [
    {
      "id": "68234731e6074232892d18c4",
      "companyName": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "streetName": "<string>",
      "buildingNumber": "<string>",
      "townName": "<string>",
      "postCode": "3700",
      "position": "<string>",
      "email": "jsmith@example.com",
      "mobile": "<string>",
      "phone": "<string>",
      "website": "<string>",
      "category": "clients",
      "formOfAddress": "<string>",
      "note": "<string>",
      "vatNumber": "<string>",
      "country": "<string>",
      "secondaryAddressLine": "<string>",
      "customerIdentification": "<string>"
    }
  ]
}

Authorizations

x-api-token
string
header
required

API token for authentication. Obtain from your Infinity account settings.

Query Parameters

limit
number
default:30

Pagination limit for the results. Defaults to 30 if not specified. Maximum allowed value is 200.

Required range: x <= 200
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[]