Authentication
Currently, the Regular Show API does not require authentication. All endpoints are freely accessible.
Future Plans
We may add authentication in the future for:
- Higher rate limits
- Premium features
- Personal API keys
Best Practices
Even without authentication, please follow these best practices:
- Cache responses - Don't make unnecessary requests
- Handle errors gracefully - Check for error responses
- Respect the service - Don't overload the server
No API Key Required
All current endpoints work without any authentication:
bash
# Works without any key
curl https://regularshow-api.vercel.app/api/characterjavascript
// No API key needed
fetch('https://regularshow-api.vercel.app/api/character')
.then(res => res.json())
.then(data => console.log(data));Coming Soon
- API key registration
- OAuth2 support
- Premium tiers