VO2 अधिकतम अनुमान API¶
क्षेत्रीय परीक्षण प्रदर्शन और आराम से शारीरिक स्थिति के आधार पर कार्डियो-श्वसन फिटनेस प्रोफाइल बनाएं।
एंडपॉइंट¶
GET /api/v1/fitness/vo2max-estimatePOST /api/v1/fitness/vo2max-estimate/post
पैरामीटर¶
| नाम | प्रकार | आवश्यक | इन | विवरण |
|---|---|---|---|---|
age | पूर्णांक (13-85) | हाँ | क्वेरी/बॉडी | वर्ष में आयु। |
gender | स्ट्रिंग | हाँ | क्वेरी/बॉडी | male या female। |
resting_hr | संख्या (30-130) | हाँ | क्वेरी/बॉडी | प्रति मिनट हृदय गति (bpm)। |
cooper_test_distance | संख्या (800-5000) | सशर्त | क्वेरी/बॉडी | 12-मिनट में कोपर की दूरी (मीटर में)। |
1_5_mile_time | संख्या (6-30) | सशर्त | क्वेरी/बॉडी | 1.5-मील की दौड़ का समय (मिनट में)। |
lang | स्ट्रिंग | नहीं | क्वेरी | प्रतिक्रिया भाषा (en,es,de,fr,pt,ja,hi,ar)। |
इस एंडपॉइंट का उपयोग क्यों करें¶
- एक ही प्रतिक्रिया में कई VO2 अनुमान विधियों को मिलाएं।
- वर्गीकरण, प्रतिशतक और प्रशिक्षण मार्गदर्शन जानकारी जोड़ें।
- फिटनेस-आयु और जोखिम संबंधी अंतर्दृष्टि सुविधाएँ प्रदान करें।
अनुरोध का उदाहरण¶
curl -X GET "https://api.hefitapi.com/api/v1/fitness/vo2max-estimate?age=33&gender=male&resting_hr=56&cooper_test_distance=2800&lang=en" \
-H "X-API-Key: YOUR_API_KEY"
curl -X POST "https://api.hefitapi.com/api/v1/fitness/vo2max-estimate/post?lang=en" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"age":29,"gender":"female","resting_hr":60,"1_5_mile_time":11.8}'
प्रतिक्रिया का उदाहरण¶
!!! सूचना नीचे दिए गए प्रतिक्रिया उदाहरण केवल प्रदर्शन उद्देश्यों के लिए हैं। पूर्ण, वास्तविक समय और संभावित रूप से अधिक समृद्ध JSON संरचना प्राप्त करने के लिए इस एंडपॉइंट पर एक लाइव अनुरोध करें।
{
"age": 33,
"gender": "male",
"resting_hr_bpm": 56.0,
"test_inputs": {"cooper_test_distance_m": 2800.0, "run_1_5_mile_time_min": null},
"estimate_method": "cooper_blend",
"estimate_method_label": "Cooper Blend",
"vo2max_estimate_ml_kg_min": 51.2,
"vo2max_range_ml_kg_min": {"lower": 45.1, "upper": 57.3},
"fitness_classification": "excellent",
"fitness_classification_label": "Excellent",
"percentile_estimate": 87,
"confidence": {"score": 84, "level": "medium", "level_label": "Medium", "notes": "Single-test blend provides solid directional estimate."},
"cardiorespiratory_risk_insight": "Favorable cardiorespiratory profile.",
"training_focus_recommendations": ["Maintain aerobic base and threshold progressions"],
"derived_metrics": {"estimated_hr_max_bpm": 185, "hr_reserve_bpm": 129, "fitness_age_estimate_years": 28},
"summary": "Excellent aerobic profile with strong performance potential.",
"language": "en",
"_enterprise": {"client": "Acme Health", "plan": "pro", "request_id": "31a83dfecbe5a34b", "quota": 120, "usage_tracking": true},
"_api_metadata_": {"endpoint_name": "fitness_vo2max_estimate", "response_language": "en"}
}
उत्पाद की स्थिति¶
एंड्योरेंस ऐप्स, वेलनेस स्कोरिंग और प्रशिक्षण निदान प्लेटफार्मों के लिए एक मूल्यवान एंडपॉइंट।
!!! नोट कम से कम एक फील्ड परीक्षण इनपुट प्रदान करें: cooper_test_distance या 1_5_mile_time।
अनुशंसित एंडपॉइंट¶
GET /api/v1/fitness/neat-estimate- नीट अनुमान APIGET /api/v1/fitness/workout-calorie-estimate- वर्कआउट कैलोरी अनुमान APIGET /api/v1/bmi- BMI APIGET /api/v1/tdee- TDEE APIGET /api/v1/bmr- BMR APIGET /api/v1/protein-calculator- प्रोटीन कैलकुलेटर API