This quickstart guide will help you get started with Lipp Connect API, allowing you to make your first API call.
- Visit the Lipp Portal.
- Log in and go to your enterprise settings.
- Navigate to the bottom and create your API key.
Your API key is required to authenticate all API requests.
Let's start by making a simple request to the Lipp Connect API.
Use the following curl command to get a heartbeat message from the connect:
curl -X GET https://connect.lipp.cloud/api/heartbeat \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"YOUR_API_KEY: Replace with your generated API Key
{
"status": "ok",
"service": "Lipp Connect Gateway",
"timeUTC": "2025-11-06T14:42:45.4748856Z"
}This response confirms that the api key generation was successfull.
You’ve completed your first Lipp Connect API Call! Explore more advanced features in our documentation.