WWW.SKGURU.COM

REST API for Learner

Interactive API playground for testing CRUD operations using REST architecture.

REST API CRUD Operations JSON Response

About This Tool

REST API testing tool for learners
Supports GET, POST, PUT, PATCH, DELETE
Base URL: http://skguru.com
JSON response format

How to Use

Click Run Request to send API call
Edit request body if needed
View response below each section
Copy URL / Body for API testing tools(Postman)

Pro Tips

Use valid JSON format always
GET does not require body
POST = create, PUT = update, PATCH = partial update. Check HTTP status codes
GET /api/users

Fetch latest users from database.



    
GET /api/users/{id}

Retrieve a single user by user ID.



    
POST /api/users

Create a new user resource.



    
PUT /api/users

Update existing user information.



    
PATCH /api/users

Partially update existing user data.



DELETE /api/users

Delete user resource by ID.

{
  "id": 1
}