Lösungen
Plattform
Partner
Preise
Ressourcen
LOSLEGEN

Die Fitness Content API

Eine API für Bereitstellung, Personalisierung und Einblicke in Ihr gesamtes Produkt.

Plug & Play Publishing with Hyperhuman
Workout API • Stock Exercise Library • AI Recommend • AI Generate

Developer resources

Everything you need to evaluate, build, and integrate.

Built so your engineers can self-serve from read to ship.

Docs and live explorer

Read the full API reference in a cleaner modern format, or open the classic explorer to test endpoints live.

Custom player guide

Best starting point for most teams: Open API docs.

OpenAPI specs

Use the source of truth for codegen, SDK generation, tooling, and technical review.

JSON is best for tooling. YAML is easier to read and diff.

For AI agents and coding assistants

Use machine-readable artifacts built for LLMs, coding agents, and chat-native implementation workflows.

Compact LLM index

Use these instead of scraping page HTML when integrating with AI tools.

Von Content zu Intelligenz

Zuerst die Library. Dann Intelligence. Insights, die binden.

Quick accessDocsClassic explorerOpenAPI JSONOpenAPI YAMLLLM bundleAgent guide
# Stock Exercise Library

GET /v1/orgs/{organizationId}/stock-exercises
  ?q=squat&availability=all-stock
  &locale=en-US&limit=20

// Single-exercise clip + preview
{
  "id": "...",
  "name": "Goblet Squat",
  "kind": "single-exercise",
  "muscleGroups": [{ "name": "Legs" }],
  "equipment": [{ "name": "Dumbbell" }],
  "preview": {
    "url": "https://.../master.m3u8",
    "poster": "https://.../poster.jpg"
  },
  "skillLevel": "beginner",
  "audioInstructions": [...]
}

# Related: GET /v1/workouts/exercises/metadata
POST /v1/orgs/{orgId}/workouts/recommend

{
  "endUserProfileDetails": {
    "age": 28,
    "fitnessLevels": ["beginner"]
  },
  "durationOptions": {
    "minMinutes": 20,
    "maxMinutes": 30
  }
}

// Response (instant <100ms)
{
  "workouts": [
    { "id": "...", "title": "Morning Flow", "matchScore": 0.95 },
    { "id": "...", "title": "Core Basics", "matchScore": 0.89 }
  ]
}
POST /v1/orgs/{orgId}/workouts/{workoutId}/adapt

{
  "endUserProfileId": "64e3bca9d1b7e600141a9712",
  "endUserProfileDetails": {
    "age": 28,
    "gender": "female",
    "fitnessLevels": ["advanced"],
    "goalIds": ["63c92926f920a9005c4e619c"],
    "trainingDaysPerWeek": 5,
    "preferredEquipmentCategoryIds": ["67deb36a..."]
  },
  "exerciseSources": ["premium_stock", "team_exercises"],
  "userGuidance": "Training for 10K run. Focus on
    endurance. Limited time, prefer shorter workout."
}

// Response (personalized from original)
{
  "name": "Adapted: Endurance Builder",
  "totalDurationSeconds": 1200,
  "difficulty": "advanced",
  "adaptationReasoning": "Shortened to 20min per
    user request. Swapped HIIT for steady-state
    cardio to support 10K goal.",
  "instances": [...]
}
POST /v1/orgs/{orgId}/workouts/generate

{
  "endUserProfileDetails": {
    "age": 28,
    "fitnessLevels": ["beginner"]
  },
  "exerciseSources": ["premium_stock"],
  "durationOptions": {
    "minMinutes": 20,
    "maxMinutes": 20
  },
  "categoryId": "615aa3f0dbe7140012c59e94"
}

// Response (2-8 seconds)
{
  "workout": {
    "id": "generated-abc123",
    "title": "20min Beginner HIIT",
    "duration": 1200,
    "segments": [...]
  }
}
GET /v1/orgs/{orgId}/endusers/{email}/insights/digest
    ?date=2026-01-10

// Daily AI Digest Response
{
  "pillars": [
    {
      "type": "health_pulse",
      "status": "green",
      "headline": "82 (+5 vs 7-day). Driver: Sleep.",
      "action": "Maintain your sleep routine",
      "readinessBand": "push"
    },
    {
      "type": "training",
      "status": "green",
      "headline": "4 workouts. Form: 78%. On pace.",
      "action": "Next: Full Body Strength"
    }
  ],
  "todaysFocus": "Complete: Full Body Strength",
  "dataCompleteness": 0.75
}
Schritt 1

Stock Exercise Library

Einzelne Clips browsen und streamen. Picker und Player bauen—ohne zu filmen.

  • Free- und Premium-Stock nach Muskel, Equipment und Level suchen
  • Lokalisierte Namen und Audio. HLS-Preview sofort abspielbar
Schritt 2

KI-Empfehlung

Schlagen Sie das beste nächste Workout oder den besten Plan anhand von Zielen und Profilsignalen vor.

  • Personalisierte "Als Nächstes"-Empfehlung in Sekunden
  • Funktioniert mit Ihrem bestehenden Content
Schritt 3

KI-Anpassung

Entwickeln Sie bestehende Workouts und Programme weiter, wenn Nutzer Fortschritte machen und sich der Kontext ändert.

  • Fortschritt ohne manuelle Programmierung
  • Hält Pläne länger relevant
Schritt 4

KI generieren

Erstellen Sie spontane Workouts und mehrwöchige Programme, die auf den jeweiligen Benutzer zugeschnitten sind.

  • Frische Sessions ohne Content-Laufband
  • Basierend auf Einschränkungen: Zeit, Niveau, Ausrüstung
Schritt 5

KI-Einblicke

Verwandeln Sie Sitzungen, Feedback und Ziele in tägliche Anleitung und 360-Grad-Einblicke.

  • Tägliche Zusammenfassung + Säulendetailansichten
  • Gebaut für Wiedereingliederungsschleifen

Von Exercise-Clips zu adaptiven Programmen—eine API.

Bereitstellungsoptionen

Von vorgefertigten Bibliotheksseiten bis hin zu vollständig benutzerdefinierten Player-Erlebnissen – stellen Sie Inhalte nach Ihren Wünschen bereit.

Embed & Go

Betten Sie einen Workout-Player oder Ihre gesamte anpassbare Inhaltsbibliothek ein.

Am besten für: Web-Apps, Portale, MVPs, Landing Pages, Corporate Wellness

In der Doku ansehen

Streamen Sie Videos

Trainingsvideo- oder Audiostreams in voller Länge, bereit zur Verteilung.

Am besten für: VOD-Kataloge, CMS-Publishing, YouTube-Workflows

In der Doku ansehen

Erstellen Sie Ihre UX

Playlists, Segmente und Stock-Exercise-Previews in Ihrer UI.

Am besten für: Apps, die einen Exercise-Picker brauchen—nicht nur volle Workouts

In der Doku ansehen

Generate - Play - Track

Library ohne Produktion
Library ohne Produktion
Exercise-Video ab Tag eins. Kein Shoot. Kein Media-Stack.
Personalisierte Erlebnisse
Personalisierte Erlebnisse
Bieten Sie Trainingseinheiten an, die auf Ihre Ziele, Ihr Fitnessniveau und Ihre Ausrüstung zug...
Instant, Multi-Channel Delivery
Instant, Multi-Channel Delivery
Embed interactive players, stream full workouts, or export videos across channels.
Niedrigere Kosten, weniger Betriebsaufwand
Niedrigere Kosten, weniger Betriebsaufwand
Ersetzen Sie umfangreiche Content-Pipelines durch eine einzige API für Bereitstellung, Nachverf...
Schnellere Time-to-Market
Schnellere Time-to-Market
Clean OpenAPI flows and proven patterns. Many teams go live in days.
Mitglieder kommen zurück
Mitglieder kommen zurück
Empfehlen, adaptieren und tägliche Insights für Adherence—keine One-and-done-Sessions.

Your integration copilot

API im Chat erkunden. Schneller mit Agenten entwickeln.

FAQ Hyperhuman-API

Einige Punkte, die Sie wissen sollten

Can I browse individual stock exercise videos via the API?
Why is /video-assets empty when I want Hyperhuman stock exercises?
Which plans include the Stock Exercise Library API?
Is there any documentation available for the API?
How do I access the Hyperhuman API?
What type of fitness content can I deliver to my clients?
How do I embed Hyperhuman content on my website?
What are the two output formats for workouts provided by the Fitness Content API?
How does the Interactive Version enhance the offerings for businesses and digital fitness companies?
Are there additional costs associated with choosing a specific format?
Are there any limitations on the number of API requests I can make?
Is there any support available for the API?
Do you support localization / multiple locales?
Can we embed a player vs build our own?
Do you offer a free trial or sandbox?
Which API docs should I use first?
Do you provide OpenAPI files?
Do you provide docs for LLMs and coding agents?
Can I explore the API before I have production access?

Partner-Oekosystem

Entdecken Sie die Partner, die Hyperhuman erweitern

Wearables, Bewegungs-Coaching und zukuenftige Intelligenz-Module - von unseren Technologiepartnern angetrieben.