Troubleshooting Guide
Solutions to common issues when using Get3W.
API Issues
401 Unauthorized
Symptoms: API returns 401 Unauthorized
Solutions:
- Verify your API key is correct
- Check header format:
Authorization: Bearer YOUR_API_KEY - Ensure you've made at least one top-up
- Try generating a new API key
429 Too Many Requests
Symptoms: API returns 429 Too Many Requests
Solutions:
- Wait 60 seconds for rate limits to reset
- Reduce concurrent requests
- Upgrade your account level for higher limits
- Implement exponential backoff in your code
500 Internal Server Error
Symptoms: API returns 500 Internal Server Error
Solutions:
- Retry the request after a few seconds
- Check if the model is available
- Try a different model
- Contact support if the issue persists
Generation Issues
Task Stuck in "Processing"
Symptoms: Task status remains processing for too long
Expected wait times:
- Images: < 30 seconds
- Videos: < 5 minutes
- 3D models: < 10 minutes
Solutions:
- Wait — some tasks take longer during high load
- Check the model's typical processing time
- Delete the task and retry
- Contact support if consistently slow
Poor Quality Output
Symptoms: Generated content doesn't match expectations
Solutions:
- Improve your prompt — see Write Better Prompts
- Try a different model — see Choose the Right Model
- Increase resolution or quality parameters
- Use the Prompt Enhancer in the web interface
- Try different seed values
Task Failed
Symptoms: Task status is failed with an error message
Common causes:
| Error | Solution |
|---|---|
| Invalid prompt | Check prompt format and content |
| Invalid image URL | Ensure the URL is accessible and valid |
| Unsupported dimensions | Check supported sizes for the model |
| Content policy violation | Modify your prompt to comply with policy |
| Model unavailable | Try later or use a different model |
SDK Issues
Python SDK: ModuleNotFoundError
bash
pip install --upgrade get3wJavaScript SDK: Authentication Error
Ensure your API key is set:
bash
export GET3W_API_KEY="your-api-key"Timeout Errors
Increase the timeout in your client:
python
output = get3w.run(
"model-id",
{"prompt": "..."},
timeout=60000,
)Web Interface Issues
Cannot Log In
- Clear browser cache and cookies
- Try a different browser
- Check if your account is active
- Contact support
Generation Not Starting
- Check your credit balance
- Verify you haven't hit rate limits
- Try refreshing the page
- Check browser console for errors