A RESTful API follows these characteristics:
/users/123
)Example of RESTful endpoints:
GET /users # Get all users
GET /users/123 # Get specific user
POST /users # Create new user
PUT /users/123 # Update user
DELETE /users/123 # Delete user