Skip to content

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/all
    • GET /backend/api/v1/save_transcriptions/by-live-session
    • GET /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 (Bearer or API Key).
  • OpenAPI version updated from 3.0.1 to 3.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 401 return.
    • Fetch (GET /{id}), modify (PUT /finish), and delete (DELETE) actions on specific resources explicitly return a 404 Not Found for invalid IDs.
    • The POST /lives endpoint now declares all its strict error returns (401, 403, 404, 422, 503).