curl --request GET \
--url https://partner-api.ochy-prod.com/analysis/{analysis_id}/results/raw_data \
--header 'Authorization: Bearer <token>'import requests
url = "https://partner-api.ochy-prod.com/analysis/{analysis_id}/results/raw_data"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://partner-api.ochy-prod.com/analysis/{analysis_id}/results/raw_data', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Get raw data
Retrieve frame-by-frame position data for a completed analysis.
Only available when the analysis status is success.
Side view analysis returns positions for: head top, nose, eyes, ears, shoulders, elbows, wrists, hips, knees, ankles, heels, feet, and neck, plus video metadata and human bounding box per frame.
Back view analysis returns positions for: C7 (spine), hips (LHIP/RHIP), PSIS landmarks, knees, calves, ankles, heels (LBHEEL/RBHEEL, LTHEEL/RTHEEL), and metatarsals (LFM1/LFM5, RFM1/RFM5), plus video metadata and human detection confidence scores per joint.
curl --request GET \
--url https://partner-api.ochy-prod.com/analysis/{analysis_id}/results/raw_data \
--header 'Authorization: Bearer <token>'import requests
url = "https://partner-api.ochy-prod.com/analysis/{analysis_id}/results/raw_data"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://partner-api.ochy-prod.com/analysis/{analysis_id}/results/raw_data', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
Recommended. Pass your API key as a Bearer token in the Authorization header: Authorization: Bearer YOUR_API_KEY.
Path Parameters
Analysis ID returned by the start endpoint.
Response
Raw frame-by-frame data.
Shape varies by analysis type. See description for details.