Common Issues & Solutions
🔒 Authentication Problems
- Issue: "401 Unauthorized" error when accessing endpoints
Solution: Ensure your API key is correctly formatted and included in the request headers.
🔗 Learn more about authentication
📝 Incorrect Request Format
- Issue: "Bad Request" when sending data
Solution: Verify JSON payload syntax and match required field names. Example:{ "query": "example_query", "params": { "sort": "desc" } }
⚠️ Error Handling Confusion
- Issue: Unsure how to interpret error responses
Solution: Check theerror_code
field for details. Common codes:400
- Invalid request404
- Resource not found500
- Internal server error
🔗 View error code reference
📦 Caching Issues
- Issue: Unexpected data from cached responses
Solution: UseCache-Control: no-cache
header for real-time data.
🔗 Read about caching strategies