API Playground Troubleshooting
The API playground lets you test endpoints directly in the browser. Here are solutions to common issues.”Missing required fields to send a playground request”
This error occurs when required parameters haven’t been filled in. Here’s how to fix it:For GET Requests
GET requests typically only need your API key:- Enter your API key in the Authorization field
- Click Send
GET /modelsGET /voicesGET /developer/api
For POST Requests
POST requests need additional body parameters:- Enter your API key in the Authorization field
- Fill in all required body parameters (marked with
required) - Click Send
POST /tts-synthesize, you must fill in:
text(required) - The text to convert to speechvoice_id(optional) - Voice to usespeed(optional) - Speech speed
For Path Parameters
Some endpoints have path parameters like{id}:
- Enter your API key in the Authorization field
- Fill in the path parameter (e.g., the API key ID)
- Click **Send`
DELETE /developer/api/{id} requires the API key ID in the URL.
Common Issues
Issue: “401 Unauthorized”
Cause: Invalid or missing API key Solution:- Verify your API key is correct
- Get a new API key from app.60db.ai
- Make sure you’re including the key in the Authorization field
Issue: “CORS error”
Cause: Browser security blocking the request Solution:- Make sure you’re testing from the documentation site
- Try refreshing the page
- Clear your browser cache
Issue: Request times out
Cause: Network issues or server problems Solution:- Check your internet connection
- Try again in a few moments
- Check if the API is operational
Getting Your API Key
- Go to app.60db.ai
- Navigate to Settings → Developer → API Keys
- Click Create API Key
- Copy and store your API key securely
Tips for Using the Playground
- Start with GET requests - They’re simpler and only need an API key
- Check required fields - All required fields must be filled before sending
- Use example values - The playground shows example values to help you get started
- Test incrementally - Try one endpoint at a time to understand the API
Still Having Issues?
If you’re still experiencing problems:- Check the Authentication documentation
- Contact support at support@60db.com
- Open an issue on GitHub