Skip to content

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:

  1. Simplicity - Easy to understand and use
  2. Consistency - Predictable response formats
  3. Performance - Fast response times
  4. 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:

ParameterTypeDefaultDescription
pagenumber1Page number
limitnumber20Results per page

Example:

GET /api/character?page=2&limit=10

Cross-Origin (CORS)

The API supports CORS, allowing you to make requests directly from browser-based applications.

Getting Help

If you need help:

  1. Check the Characters documentation
  2. Review the Characters documentation
  3. Review the Episodes documentation

Released under the MIT License.