Skip to content

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:

  1. Cache responses - Don't make unnecessary requests
  2. Handle errors gracefully - Check for error responses
  3. 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/character
javascript
// 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

Released under the MIT License.