Skip to main content

Changelog

Everything new, changed, fixed, deprecated or removed across the Videas developer platform.

The API reference is live. Every endpoint of the Videas REST API is documented there, generated straight from our OpenAPI specification — so the reference and the API always stay in sync.

Added

  • Full reference grouped by domain (assets, uploads, players, webhooks, analytics…), with a side navigation.
  • For each endpoint: parameters, request body, response schema and detailed error codes.
  • Authentication section wired to the create an API key guide.
  • Downloadable OpenAPI specification to generate your own client or import it into Postman / Insomnia.

Download the spec

GET /en/developers/api-reference/schema/?download=openapi

The spec is the same source that powers the reference and our official SDKs — what is documented is exactly what gets called.

Two official clients are now available to call the Videas API from your language — typed, authenticated and ready to use. Both are generated from our OpenAPI specification, with the base URL baked in from the spec.

Added

  • JavaScript / TypeScript@videas/sdk, dependency-free, runs on Node.js and in the browser, with full TypeScript types.
  • Pythonvideas-sdk, dependency-free (standard library only), works on Python 3.9+.
  • Automatic chunked uploads for large files.
  • Integration guides for JavaScript and Python.

Install

# JavaScript / TypeScript
npm install @videas/sdk

# Python
pip install videas-sdk

Prefer another language? The OpenAPI specification is downloadable to generate a typed client in PHP, Go, Ruby, Java and more.