Analyzed video
GET & POST requests to receive a link to an analyzed video
Enter your bearer token (Firebase auth) in the format: Bearer
Indicates whether this session is for jump analysis.
Indicates whether this session is for weightlifting analysis.
If true, returns a signed URL that forces download of the video.
Analyzed video URL retrieved successfully.
URL of the analyzed video.
Bad Request - Possibly invalid parameters.
Unauthorized - Token is invalid or missing.
Forbidden - User lacks privileges or plan.
Not Found - Session data or resource not found.
Internal Server Error - A server-side error occurred.
GET /session-management/sessions/{session_id}/analyzed-video/ HTTP/1.1
Host: api.aikynetix.app
Authorization: YOUR_API_KEY
Accept: */*
{
"analyzed_video_url": "https://example.com"
}Enter your bearer token (Firebase auth) in the format: Bearer
Whether this session is jump-related.
Whether this session is weightlifting-related.
Analyzed video URL generated or updated successfully.
URL of the newly generated or updated analyzed video.
Bad Request - Possibly invalid session data or video already analyzed.
Unauthorized - The token is missing or invalid.
Forbidden - The user does not have a valid payment plan.
Not Found - Session not found or creation failed.
Internal Server Error - A server-side error occurred.
POST /session-management/sessions/{session_id}/analyzed-video/ HTTP/1.1
Host: api.aikynetix.app
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"is_jump": true,
"is_weight": false
}{
"analyzed_video_url": "https://example.com"
}Last updated
Was this helpful?