Getting Started
Welcome to Gikmake's developer documentation. Here you'll find everything you need to integrate Gikmake's AI-powered fitness planning into your applications. Our platform provides three core APIs: Plan Generation, Equipment Database, and Progress Tracking.
To get started:
1. Create a Gikmake developer account
2. Generate your API key from the dashboard
3. Choose your SDK (JavaScript, Python, Go, or REST)
4. Make your first API call
All API requests must include your API key in the Authorization header using Bearer token authentication.
Example Request
curl -X POST https://api.gikmake.fit/v1/generate-plan \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"goal": "strength",
"fitnessLevel": "intermediate",
"equipment": ["dumbbells", "pull-up-bar"],
"daysPerWeek": 4
}'