Views
No views yet
\**Veo 3\** API Pricing in CometAPI,20% off the official price:| Model name | Price |
|---|---|
| veo3-pro | $1 |
| veo3-fast | $5 |
| veo3 | $1 |
| veo3-pro-frames | $5 |
veo3,veo3-pro,veo3-fast,veo3-pro-frames:It is the latest video generation model officially launched by Google. The generated videos have sound. It is the only video model with sound in the world.veo3-pro-framessupports the first frame mode. This model follows the openai chat standard format callveo3-pro”etc endpoint to send the API request and set the request body. The request method and request body are obtained from our website API doc. Our website also provides Apifox test for your convenience.import requests
def main():
url = "https://api.deerapi.com/v1/chat/completions"
payload = {
"model": "veo3-pro",
"prompt": "A DJ on the stand is playing, around a World War II battlefield, lots of explosions, thousands of dancing soldiers, between tanks shooting, barbed wire fences, lots of smoke and fire, black and white old video: hyper realistic, photorealistic, photography, super detailed, very sharp, on a very white background",
"aspect_ratio": "16:9",
"duration": "8",
}
headers = {"Authorization": "Bearer ", "Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print("Generation:", response.json())
if name == "main":
main()