Speech to Text
Overview
This API provides speech-to-text transcription services, allowing you to convert audio files into text format.
Endpoints
Audio Transcription
Convert audio files to text using speech recognition.
Endpoint: /v1/api/transcribe/
Method: POST
Content-Type: multipart/form-data
API Details
| Resource URL | /v1/api/transcribe/ |
|---|---|
| Response Format | JSON |
| Requires Authentication | No |
| Rate Limited | Yes |
| HTTPS | Yes |
Request Parameters
| Parameter | Description | Required | Type |
|---|---|---|---|
| files | Array of audio files to transcribe | Yes | binary |
Example Request
Successful Response
Error Response
Root Endpoint
Basic endpoint to check API availability.
Endpoint: /
Method: GET
API Details
| Resource URL | / |
|---|---|
| Response Format | HTML |
| Requires Authentication | No |
| Rate Limited | No |
| HTTPS | Yes |
Example Request
Successful Response
Returns an HTML page indicating the API is operational.
Error Codes
| Error Code | Description |
|---|---|
| 422 | Validation Error - Invalid request parameters |
| 400 | Bad Request - Malformed request syntax |
| 500 | Internal Server Error - Server-side processing error |
Notes
- Supported audio file formats should be specified by the implementation
- Maximum file size limits should be specified by the implementation
- Rate limiting details should be specified by the implementation