This is a simple REST API built using Flask that performs basic arithmetic operations such as addition, subtraction, multiplication, and division.
Live URL:
API
- Basic arithmetic operations
- JSON-based API input and output
- Easy to test with Postman
Returns a basic welcome message in HTML.
Accepts a JSON payload to perform the requested operation.
add- additionsub- subtractionmul- multiplicationdiv- division
{
"op": "add",
"first": 10,
"second": 5
}{
"result": 15
}