curl --location --request POST 'https://vid-tag-api.framealyzer.com/api/v1/analyze/inline' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"analyses": [
"professional_cinematography_tags",
"topic_tags"
],
"video_data": "base64_encoded_video_data_here"
}'{
"success": true,
"results": {
"cinematography_tags": [
"Handheld Shot",
"Natural Lighting"
],
"topics_tags": [
"Technology",
"Innovation"
]
},
"metadata": {
"file_size": 1048576,
"processing_method": "inline_data",
"credits_consumed": 4
}
}