
Unlisted
Like
readback-api
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v7View latest version
This is a wrapper API for the LemonFox AI speech generation service. It simplifies the interface by only exposing the essential parameters while handling authentication and configuration internally.
- Set the
LEMONFOX_API_KEYenvironment variable with your LemonFox API key - The API will be available at the HTTP endpoint for this val
Generates speech from text using the LemonFox AI service.
Request Body:
{
"voice": "sarah",
"input": "Text to convert to speech"
}
Response:
{
"audio": "_base_64_encoded_audio_here",
"word_timestamps": [
{
"word": "Hello!",
"start": 0.275,
"end": 0.7
}
]
}
Error Response:
{
"error": "Error message",
"details": "Additional error details (optional)"
}
Health check endpoint that returns the service status.
Response:
{
"status": "ok",
"timestamp": "2024-01-01T00:00:00.000Z"
}
The API automatically configures:
response_format: Always set to "mp3"word_timestamps: Always set to true
Only voice and input parameters need to be provided by the client.