Skip to main content

🚀 Quickstart

Connect to KlickTipp with Nango and see data flow in 2 minutes.
1

Create the integration

In Nango (free signup), go to Integrations -> Configure New Integration -> KlickTipp.
2

Authorize KlickTipp

Go to Connections -> Add Test Connection -> Authorize, then enter your API key. Later, you’ll let your users do the same directly from your app.
3

Call the KlickTipp API

KlickTipp requires the API key in the request body. Retrieve the stored credentials, then include the key in your call. Replace the placeholders below with your secret key, integration ID, and connection ID:
# 1. Retrieve the stored API key
curl "https://api.nango.dev/connections/<CONNECTION-ID>" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>"
# → { "credentials": { "apiKey": "..." } }

# 2. Subscribe a contact (include apikey in the body)
curl -X POST "https://api.klicktipp.com/subscriber/signin" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "apikey=<API-KEY>&email=test@example.com"
✅ You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production API key, follow the connect guide linked below.

📚 KlickTipp Integration Guides

Nango maintained guides for common use cases. Official docs: KlickTipp API Documentation
KlickTipp authenticates via an API key sent in the request body. The Nango proxy stores the key securely; at runtime, retrieve it via the Node SDK and include it in your request body directly.

🧩 Pre-built syncs & actions for KlickTipp

Enable them in your dashboard. Extend and customize to fit your needs. No pre-built syncs or actions available yet.
Not seeing the integration you need? Build your own independently.