Introduction
Welcome to the Regular Show API documentation! This guide will help you understand how to use the API effectively.
What is Regular Show API?
The Regular Show API is a free, RESTful API that provides access to character and episode data from the animated television series "Regular Show". It's designed to be similar in structure and ease of use to the popular Rick and Morty API.
API Philosophy
Our API follows these principles:
- Simplicity - Easy to understand and use
- Consistency - Predictable response formats
- Performance - Fast response times
- Accessibility - No authentication required
Rate Limits
Currently, the API has no rate limits. However, we ask that you:
- Cache responses when possible
- Not overwhelm the server with rapid requests
- Use the API for legitimate purposes
Response Format
All responses follow a consistent JSON format:
Success Response
json
{
"info": {
"count": 252,
"pages": 84,
"current_page": 1
},
"results": [...]
}Single Resource Response
json
{
"id": 2037,
"name": "Benson",
"slug": "Benson",
"image": "images/Benson.png",
"categories": [...],
"info": {...},
"index": "B"
}Error Response
json
{
"error": "Character not found"
}Pagination
List endpoints support pagination with the following query parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
page | number | 1 | Page number |
limit | number | 20 | Results per page |
Example:
GET /api/character?page=2&limit=10Cross-Origin (CORS)
The API supports CORS, allowing you to make requests directly from browser-based applications.
Getting Help
If you need help:
- Check the Characters documentation
- Review the Characters documentation
- Review the Episodes documentation