Configuration
Initialize the SDK with your API credentials.
Step 1: Initialize the SDK
1import KinesteXAIKit
2
3@State var showKinesteX = false // Controls KinesteX SDK visibility
4@State var isLoading = false // Optional: Controls custom loading screen
5
6// Initialize with your API key, company name, and unique user ID
7let kinestex = KinesteXAIKit(
8 apiKey: "YOUR_API_KEY",
9 companyName: "YOUR_COMPANY",
10 userId: "unique-user-id"
11)
12
13// Optional: UserDetails to customize workout intensity
14let user = UserDetails(
15 age: 20,
16 height: 170,
17 weight: 70,
18 gender: .Male,
19 lifestyle: .Active
20)Need Help?
Our team is ready to assist with your integration.

