v1

latestOpenAPI 3.0.0MIT License2026-07-2271015.6 KB
Health

API version endpoint

Returns version information and available endpoints.

get/v1

Response

Backend is operational

namestring required

Human-readable name of the backend

versionstring required

Backend version (semantic versioning)

status'operational' | 'degraded' | 'maintenance' | 'offline' required

Current operational status

spec'omss' required

Standard name (always "omss")

notestring

Optional note about the backend or recommended frontend

Example response

{
  "name": "My OMSS Backend",
  "version": "1.0.0",
  "endpoints": {
    "movie": "/v1/movies/{id}",
    "tv": "/v1/tv/{id}/seasons/{s}/episodes/{e}",
    "proxy": "/v1/proxy/?data={encoded_data}"
  },
  "note": "Community-powered streaming backend. Visit https://github.com/mybackend for more info."
}