Authorization: Bearer ********************{
"contents": [
{
"parts": [
{
"text": "Please summarize this video in 3 sentences"
},
{
"fileData": {
"mimeType": "video/mp4",
"fileUri": "https://example.com/sample-video.mp4"
}
}
]
}
]
}curl --location --request POST 'v1beta/models/:generateContent' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"contents": [
{
"parts": [
{
"text": "Please summarize this video in 3 sentences"
},
{
"fileData": {
"mimeType": "video/mp4",
"fileUri": "https://example.com/sample-video.mp4"
}
}
]
}
]
}'{
"candidates": [
{
"content": {
"parts": [
{
"text": "The video shows a cat playing with a ball of yarn in a living room. The cat appears energetic and playful throughout the clip. The video ends with the cat resting on a couch."
}
],
"role": "model"
},
"finishReason": "STOP",
"index": 0
}
],
"usageMetadata": {
"promptTokenCount": 1024,
"candidatesTokenCount": 45,
"totalTokenCount": 1069
}
}