CrossTrack

Enter your email to sign in or create an account
or

No password needed. We'll email you a sign-in link.

Welcome to CrossTrack

Here's your API key. Copy it now — you won't see it again.

Your API Key

Generating...
Save this key securely. It will only be shown once.
CrossTrack
Overview Settings Docs

Overview

Profiles
0
Events
0
Plan
Free

Recent Events

No events yet. Integrate an SDK to see events here.

API Key

Your key for SDK integration. Generating a new key will revoke the current one.

Quick Start

Web
Android
iOS
cURL
<script src="https://app.crosstrackdata.com/crosstrack.js"></script> <script> CrossTrack.init({ apiKey: 'YOUR_API_KEY', collectionUrl: 'https://crosstrack.onrender.com' }); CrossTrack.consent('opted_in'); // Track events CrossTrack.track('page_view'); // When user logs in: CrossTrack.identify('user_123'); </script>
// 1. Add JitPack to settings.gradle.kts // repositories { maven { url = uri("https://jitpack.io") } } // // 2. Add dependency to build.gradle.kts // implementation("com.github.CrossTrackData:crosstrack-android:0.1.0") // 3. Initialize in your Application class CrossTrack.init( context = applicationContext, config = CrossTrackConfig( apiKey = "YOUR_API_KEY", collectionUrl = "https://crosstrack.onrender.com" ) ) CrossTrack.consent().setConsent(ConsentState.OPTED_IN) // Track events CrossTrack.api().track("screen_view", mapOf("screen" to "home")) // When user logs in: CrossTrack.api().identify("user_123")
// 1. In Xcode: File → Add Package Dependencies // URL: https://github.com/CrossTrackData/crosstrack-ios // 2. In AppDelegate CrossTrack.shared.initialize( config: CrossTrackConfig( apiKey: "YOUR_API_KEY", collectionUrl: "https://crosstrack.onrender.com" ) ) CrossTrack.shared.consent().optIn() // Track events CrossTrack.shared.track("screen_view", properties: ["screen": "home"]) // When user logs in: CrossTrack.shared.identify("user_123")
curl -X POST https://crosstrack.onrender.com/v1/events \ -H "Content-Type: application/json" \ -H "X-API-Key: YOUR_API_KEY" \ -d '{ "anonymousId": "test-visitor-001", "type": "page_view", "properties": {"url": "/hello"} }'
Feedback

Send Feedback