Upload Video
Learn how to upload brand videos to your workspace
Published ·Updated
/v1/brand-assets/videos/addcurl -X POST "https://api.orshot.com/v1/brand-assets/videos/add" \
-H "Authorization: Bearer <ORSHOT_API_KEY>"const res = await fetch("https://api.orshot.com/v1/brand-assets/videos/add", {
method: "POST",
headers: {
Authorization: "Bearer <ORSHOT_API_KEY>",
},
});
const data = await res.json();import requests
response = requests.post(
"https://api.orshot.com/v1/brand-assets/videos/add",
headers={"Authorization": "Bearer <ORSHOT_API_KEY>"},
)
data = response.json()$ch = curl_init("https://api.orshot.com/v1/brand-assets/videos/add");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer <ORSHOT_API_KEY>",
]);
$data = json_decode(curl_exec($ch), true);
curl_close($ch);require "net/http"
require "json"
uri = URI("https://api.orshot.com/v1/brand-assets/videos/add")
req = Net::HTTP::Post.new(uri)
req["Authorization"] = "Bearer <ORSHOT_API_KEY>"
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) }
data = JSON.parse(res.body)Overview#
This endpoint allows you to upload brand videos to your workspace. You can upload videos from a URL, as a base64-encoded string, or as a binary upload.
https://api.orshot.com/v1/brand-assets/videos/addRequest#
await fetch("https://api.orshot.com/v1/brand-assets/videos/add", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer <ORSHOT_API_KEY>",
},
body: JSON.stringify({
file: "https://example.com/videos/brand-intro.mp4",
name: "brand-intro.mp4", // optional
tags: ["intro", "brand"], // optional
metadata: { // optional
description: "Brand introduction video",
category: "marketing"
}
}),
});const formData = new FormData();
formData.append("file", videoFile); // File object
formData.append("name", "brand-intro.mp4"); // optional
await fetch("https://api.orshot.com/v1/brand-assets/videos/add", {
method: "POST",
headers: {
Authorization: "Bearer <ORSHOT_API_KEY>",
},
body: formData,
});{
"data": {
"video": {
"id": 790,
"created_at": "2025-09-11T10:15:30.123Z",
"name": "brand-intro.mp4",
"original_filename": "brand-intro.mp4",
"file_size": 5242880,
"direct_url": "https://storage.orshot.com/videos/workspace_id/brand-intro.mp4",
"width": 1920,
"height": 1080,
"duration": 30.5,
"format": "mp4",
"mime_type": "video/mp4",
"thumbnail_url": null,
"metadata": {
"description": "Brand introduction video",
"category": "marketing"
},
"workspace_id": 50,
"user_id": "abcdef01-2345-6789-abcd-ef0123456789"
},
"url": "https://storage.orshot.com/videos/workspace_id/brand-intro.mp4"
}
}Request Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
file | String | Yes | URL, base64-encoded string, or binary upload of the video file |
name | String | No | Custom name for the video (defaults to original filename or auto-generated) |
tags | String[] | No | Array of tags to associate with the video (e.g., ["intro", "brand"]) |
metadata | Object | No | Custom metadata to attach to the video (can include width, height, duration) |
Supported Video Formats#
- MP4 (
video/mp4) - WebM (
video/webm) - QuickTime / MOV (
video/quicktime) - AVI (
video/x-msvideo) - Matroska / MKV (
video/x-matroska) - FLV (
video/x-flv) - WMV (
video/x-ms-wmv) - M4V (
video/x-m4v) - GIF (
image/gif)
Notes#
- Maximum file size: 60MB (checked again after any conversion)
- Videos with web-compatible codecs (H.264) are stored as-is. Videos using codecs browsers can't play (e.g. HEVC/H.265) are automatically converted to H.264, which can change the file extension of the stored video (e.g. .mov to .mp4)
Error responses#
Input problems return 400 with a plain-language error and, for the two cases agents hit most, a stable code:
VIDEO_NOT_A_VIDEO: the bytes carry no MP4, WebM, MOV, AVI, MKV, FLV, WMV, M4V or GIF signature. Usually a filename, a description, or placeholder text was sent instead of the file, or a URL served an HTML page.VIDEO_DATA_INCOMPLETE: the data starts as a real video file but ends early. The base64 was cut off in transit, the URL served a partial file, or the upload stopped before the end. Theerrornames the fix for how the file was sent.
Hosted chat clients such as ChatGPT and Claude.ai cannot send file bytes, so a base64 file from them is almost always cut off. Pass a publicly reachable video URL instead.
Query Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
embedId | String | No | Embed instance ID. Pair with embedUserId to scope this call to one embed user |
embedUserId | String | No | The same userId your app passes to the embed URL. Requires embedId |
Per-User Libraries#
Pass embedId and embedUserId together to add the video to that embed user's private library instead of the shared workspace library. This is how one embed serves many brands or tenants, each with its own brand space.
Omit them and this endpoint behaves exactly as documented above. See Per-User Brand Assets for the full picture.
Rate Limits#
- 30 requests per minute per endpoint
Ready to automate?
Start rendering images, PDFs and videos from your templates in under 2 minutes. Free plan, no credit card.
Get your API key- Image, PDF and video generation via API
- Visual editor with AI and smart layouts
- Zapier, Make, MCP and 50+ integrations
- White-label embed for your own app
- 100 free credits a month, no credit card required