Videitos API
Everything you can do with the Claude connector — manage templates, browse storage, start video generations, and track jobs — is available over a plain HTTPS REST API.
Base URL
https://videitos.click/api/v1
Authentication
Authenticate every request with an API key sent in the Authorization header:
Authorization: Bearer <your-api-key>
Create and manage keys in your account settings. Keep them secret — a key grants full access to your account and credits. Manage API keys →
Quickstart
Export your key and list your templates. Use the language tabs on the right to see the same request in cURL, Python, JavaScript, Go, or PHP.
export VIDEITOS_API_KEY="vk_your_key_here"
Errors
The API uses standard HTTP status codes. Errors return a JSON body with an error message.
200— Success400— Invalid request or parameters401— Missing or invalid API key404— Resource not found500— Unexpected server error
Endpoints
Templates
-
GET
/api/v1/templatesList templates -
POST
/api/v1/templatesCreate a template -
PATCH
/api/v1/templates/{template_id}Update a template -
DELETE
/api/v1/templates/{template_id}Delete a template -
PATCH
/api/v1/templates/{template_id}/enabledEnable or disable a template
Storage
-
GET
/api/v1/storage/connectionsList storage connections -
GET
/api/v1/storage/connections/{connection_id}/foldersBrowse storage folders
Jobs
-
POST
/api/v1/jobsGenerate a video -
GET
/api/v1/jobsList recent jobs -
GET
/api/v1/jobs/{job_id}Get job status
Credits
OpenAPI specification
Download the machine-readable spec to generate clients or import into Postman:
/api/v1/openapi.json