CH

CodeHub

API Playground

CodeHub Demo APIs

Practice CRUD with ready-made collections

Pick a collection, read the endpoints, then try them out with your favorite HTTP client. These pages summarize the REST routes that this backend exposes automatically.

Collection

Students Collection

Manage learner records for CRUD practice lessons.

  • fullName · text
  • email · email
  • age · number
  • +2 more fields
View REST Docs →

Collection

Cars Collection

Vehicle inventory with enum fields (color) and number range validation (year, price).

  • make · text
  • model · text
  • year · number
  • +2 more fields
View REST Docs →

Collection

Books Collection

Library catalog demonstrating pagination, sorting, and boolean filtering.

  • title · text
  • author · text
  • category · text
  • +2 more fields
View REST Docs →

Collection

Orders Collection

Order management with status enum (pending/shipped/delivered) and date filtering.

  • orderNumber · text
  • customerName · text
  • totalAmount · number
  • +2 more fields
View REST Docs →

Collection

Tasks Collection

Task management demonstrating PATCH partial updates and boolean toggles.

  • title · text
  • description · textarea
  • priority · select
  • +2 more fields
View REST Docs →

Collection

Products Collection

Product catalog for validation practice and numeric comparisons.

  • name · text
  • SKU · text
  • price · number
  • +2 more fields
View REST Docs →

Collection

Feedback Collection

Feedback system for error handling and validation practice (rating 1-5).

  • authorName · text
  • rating · number
  • comment · textarea
  • +1 more fields
View REST Docs →

Collection

Blog Posts Collection

Blog posts demonstrating slug uniqueness and text search capabilities.

  • title · text
  • slug · text
  • summary · textarea
  • +2 more fields
View REST Docs →