Valor Biomechanics API
  • Valor Biomechanics API (1.0.0)
  • Terms Breakdown
  • Quick Start/Overview
  • Reference
    • API Reference
      • athletes
      • assessments
      • sessions
      • ikData
      • reportData
      • exercises
      • videoExport
  • API Examples (Coming Soon!)
Powered by GitBook
On this page
  • Retrieve Inverse Kinematics Data
  • Retrieve IK Data.
  1. Reference
  2. API Reference

ikData

Retrieve Inverse Kinematics Data

Retrieve IK Data.

GET https://487q8d7goe.execute-api.us-east-1.amazonaws.com/production/ikData

Obtain inverse kinematics data across time for a specific session defined by the query parameters.

Query Parameters

Name
Type
Description

s3Key*

String

Specific and unique s3Key or identifier of the session to fetch IK data for. Can be found from response of the sessionData endpoint

Headers

Name
Type
Description

Authorization*

String

JWT Bearer Token for authentication: Bearer <JWT token>

{
    "statusCode": 200, 
    "body": {    
                "time": [], // Time increments are in 0.016 s or 60 Hz sampled
                "jointAngle": [], // Angle array
                "jointAngle_vel": [], // Velocity array 
                "jointAngle_acc": [] // Acceleration array
                ...
            }
}
{
    "message": "String type - this will contain more details about the problem encountered"
}
{
    "message": "String type - this will contain more details about the problem encountered"
}
PrevioussessionsNextreportData

Last updated 1 year ago