Skip to main content

API Reference

Videas External API · v1.0.0

Introduction

External API for third-party developers.

This reference is generated from the OpenAPI specification of the Videas backend and lists every available endpoint grouped by resource.

Authentication

All requests must include a Bearer token in the Authorization header.

Authorization: Bearer <your_token>

How to create an API key

Base URL & versioning

Base URL
https://app.videas.com
Version
v1.0.0

Response format

All responses are JSON. Successful responses return the resource directly; errors follow a standard shape.

Success

{
  "uid": "…",
  "name": "…",
  "created_at": "2026-04-20T10:00:00Z"
}

Error

{
  "detail": "Error description",
  "code": "ERROR_CODE"
}

Errors

StatusMeaning
400Invalid request payload
401Missing or invalid authentication
403Authenticated but not allowed
404Resource not found
429Rate limit exceeded
5xxServer error — retry with exponential backoff