Use your API key to authenticate log ingestion requests.
Keys are shown only once — store them securely.
✓ Copy this key now — it won’t be shown again in full.
Click the key to copy to clipboard.
Quick Start
# Install the SDK
pip install loglogic-sdk
# Send your first logfrom loglogic import LogLogic
ll = LogLogic("ll_your_api_key_here")
ll.log({
"action": "purchase",
"user_id": "usr_12345",
"funnel": "checkout",
"data": {"amount": 49.99}
})
# Done. Check your Dashboard in <1 second.
# cURL — works with any language
curl -X POST https://api.loglogic.io/ingest \
-H "Authorization: Bearer ll_your_api_key" \
-H "Content-Type: application/json" \
-d '{"action":"app_open","user_id":"usr_99","funnel":"app"}'