All versions since 0.6.2
0.6.2 Latest
Release Date: 2026-03-06
❗ Breaking Changes
1. Removed Endpoints
- All routes related to transcription saves (
/backend/api/v1/save_transcriptions) have been removed. This includes:GET /backend/api/v1/save_transcriptions/GET /backend/api/v1/save_transcriptions/allGET /backend/api/v1/save_transcriptions/by-live-sessionGET /backend/api/v1/save_transcriptions(by ID)DELETE /backend/api/v1/save_transcriptions
✨ New Features (Additions)
1. New Endpoints
GET /version: New endpoint for retrieving the current version of the API.
✏️ Modifications and Improvements
1. Documentation and Access Tags
- Swagger/OpenAPI documentation has been significantly improved to include clear access tags. Each endpoint description now specifies its permission level:
[Public]: Indicates a publicly accessible endpoint, no authentication required.[👤 Private]: Indicates a private endpoint requiring authentication (BearerorAPI Key).
- OpenAPI version updated from
3.0.1to3.1.0.
2. Enriched HTTP Response Codes
- The API now formally documents possible error return codes for much better client-side integration.
- Authorization errors (
401 Unauthorized,403 Forbidden) and resource not found errors (404 Not Found) were previously missing in several endpoints. They are now correctly declared:- Almost all private endpoints now list the
401return. - Fetch (
GET /{id}), modify (PUT /finish), and delete (DELETE) actions on specific resources explicitly return a404 Not Foundfor invalid IDs. - The
POST /livesendpoint now declares all its strict error returns (401,403,404,422,503).
- Almost all private endpoints now list the