| Capability | What members get |
|---|---|
| مكتبة تمارين جاهزة | آلاف فيديوهات التمارين الاحترافية بجودة HD مع بيانات وصفية غنية، جاهزة للاستخدام من اليوم الأول. |
| توليد التمارين بالذكاء الاصطناعي | ولّد تمارين كاملة من الأهداف والمستوى والمدة والمعدات. مرّر معرّف منهجية فريق اختياري لتطبيق Programming DNA؛ الحذف يعني لا شيء. |
| التخصيص والتكييف | أوصِ بالتمارين وكيّفها لكل عضو باستخدام إشارات التقدم وقواعد البرمجة التدريبية. |
| البث والتضمينات | بث الفيديو ومشغّلات ويب تفاعلية وتجارب تمارين قابلة للتضمين. |
| تتبع الجلسات والرؤى | تتبّع جلسات التمارين وأحداث التفاعل لدعم الاحتفاظ بالأعضاء وإعداد التقارير. |
| 18 لغة | أسماء التمارين والإرشادات والتعليقات الصوتية موطّنة للمنتجات العالمية. |
Most exercise APIs return GIFs, short clips, or text data. Hyperhuman delivers HD video plus the intelligence layer on top: AI workout generation, personalization, streaming, and white-label delivery.
| Media | AI workout generation | White-label delivery | Languages | AI-agent tooling | |
|---|---|---|---|---|---|
| Hyperhuman | HD multi-angle videos + licensed classes | Generate, recommend, and adapt full workouts | Branded apps, embeds, and players | 16 | MCP server, llms.txt, AGENTS.md |
| ExerciseDB | Animated GIFs | — | — | English | llms.txt |
| YMove | HD exercise video clips | — | — | — | MCP server, llms.txt |
| MuscleWiki | Exercise demonstration videos | — | — | 14 | MCP server, llms.txt |
| API Ninjas | Text-only exercise data | — | — | English | — |
Based on each vendor's public documentation. Last reviewed: August 2026. “—” = not offered or not publicly documented.
Authenticate with an API key and call versioned REST endpoints. The OpenAPI spec, LLM bundle, agent integration guide, and MCP server are all public — no signup needed to evaluate the surface.
curl "https://content.api.hyperhuman.cc/v1/orgs/{organizationId}/workouts?limit=20" \
-H "X-Api-Key: $HYPERHUMAN_API_KEY"curl -X POST \
"https://content.api.hyperhuman.cc/v1/orgs/{organizationId}/workouts/generate" \
-H "X-Api-Key: $HYPERHUMAN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"endUserProfileDetails": { "age": 28, "fitnessLevels": ["beginner"] },
"exerciseSources": ["premium_stock"],
"durationOptions": { "minMinutes": 10, "maxMinutes": 15 },
"categoryId": "<from GET /v1/workouts/metadata>"
}'{
"name": "Beginner Full Body Express",
"totalDurationSeconds": 720,
"instances": [
{ "kind": "single-exercise", "durationSeconds": 40,
"exercise": { "id": "64a1…", "name": "Bodyweight Squats", … } },
{ "kind": "rest", "durationSeconds": 20 }
]
}Paste this prompt into your coding agent to integrate against the documented API surface:
Integrate the Hyperhuman Content API into this project. Before writing any code, read https://content.api.hyperhuman.cc/AGENTS.md and follow its conventions verbatim. Use https://content.api.hyperhuman.cc/openapi.json as the contract and https://content.api.hyperhuman.cc/llms-full.txt as the per-endpoint digest. Base URL: https://content.api.hyperhuman.cc — authenticate every request with the X-Api-Key header. Every error response is { "error": { "code", "message" } } — switch on error.code. Paginate by following links.next. Do not send parameters that are not in the OpenAPI spec.methodologyProfileId اختيارياً للفريق حتى يُطبَّق Programming DNA صراحة. المعرّفات المجهولة أو الشخصية أو غير النشطة تُرجع خطأ. إذا حذفت الحقل فلا يُطبَّق شيء. انظر Programming DNA.