PlayVeo
Getting Started

PlayVeo API

Generate AI videos and images programmatically using Google Veo 3.1 and Imagen 4 through a simple REST API.

8 sec

Video length

~3 min

Generation time

1080p

Resolution

Base URL

https://playveo-api.aboessa101.workers.dev

Quick steps

01

Create account

Sign up at playveo.online.

02

Get API key

Dashboard → API Keys.

03

Make a request

Pass the key in Authorization header.

04

Poll for result

GET the job ID until status = completed.

Generate a video

bash
curl -X POST https://playveo-api.aboessa101.workers.dev/v1/videos \
  -H "Authorization: Bearer pv_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A cat playing piano in a jazz club",
    "aspect_ratio": "16:9"
  }'

Generate images

bash
curl -X POST https://playveo-api.aboessa101.workers.dev/v1/images/text-to-image \
  -H "Authorization: Bearer pv_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A futuristic city at night",
    "aspect_ratio": "16:9",
    "count": 2
  }'

Poll for result

bash
curl https://playveo-api.aboessa101.workers.dev/v1/videos/vid_abc123 \
  -H "Authorization: Bearer pv_your_key"

# → { "video": { "status": "completed", "videoUrl": "..." } }