Enhance video using Postman in 5 minutes

You don't need to write code to try a video-enhancement API. With the BetterVideo Postman collection you can submit, poll, and download an enhanced video in a few clicks — then drop the same calls into your app.

Free sandbox key, no card. Never trained on. Never sold. Auto-deleted.

Step by step

  1. Get a free sandbox key at /developers.
  2. Open the Run-in-Postman collection.
  3. Set the api_key variable to your key.
  4. Send Submit a video → copy the job id.
  5. Send Get job status until it's done, then Get download URL.

From Postman to production

Once it works in Postman, the same requests translate directly to curl, Python, or Node — see the snippets below. Your footage is never trained on and auto-deletes.

One API call — curl, Python & Node

Submit a video by URL, then poll GET /v1/jobs/{id} until done (or receive a signed webhook), and fetch a time-limited download link:

cURL
curl -X POST https://api.bettervideo.io/v1/jobs \
  -H "Authorization: Bearer YOUR_KEY" -H "Content-Type: application/json" \
  -d '{"video_url":"https://.../clip.mp4","resolution":"1080p"}'
Python
import requests
r = requests.post("https://api.bettervideo.io/v1/jobs",
    headers={"Authorization": "Bearer YOUR_KEY"},
    json={"video_url": "https://.../clip.mp4", "resolution": "1080p"})
job = r.json()  # poll GET /v1/jobs/{job['id']} until status == "done"
Node.js
const res = await fetch("https://api.bettervideo.io/v1/jobs", {
  method: "POST",
  headers: { "Authorization": "Bearer YOUR_KEY", "Content-Type": "application/json" },
  body: JSON.stringify({ video_url: "https://.../clip.mp4", resolution: "1080p" })
});
const job = await res.json();

Privacy is the default, not an upgrade

  • Never trained on. Pre-trained, fixed-weight models — your frames are enhanced and returned, never used to train AI.
  • Never sold or shared. No third parties, no data brokers, no "anonymized" resale.
  • Auto-deleted. Files self-delete (default 30 days), or delete any job instantly with one call.
  • Proof on the Secure tier. Every deletion can return a signed deletion certificate, with a full audit log.

Frequently Asked Questions

No — Postman lets you run the full flow with clicks. Code snippets are provided when you're ready to integrate.

Use the 'Run in Postman' button on this page or in the developer console.

Start free — get your API key

Free sandbox key (no card). Try the entire submit → enhance → download flow in a minute with the Run-in-Postman collection.