Pizza API

Python API

This is a simple Pizza Delivery API built using Flask, Flask-RESTful, and Flask-SQLAlchemy. It allows you to manage pizza orders, retrieve orders by order ID, create new orders, and search for orders based on specific criteria.

API Endpoints

Retrieve Order

  • Retrieve a pizza delivery order by its order ID
  • GET -> /pizza-delivery-api/order/<order_id>


Create Order

  • Create a new pizza delivery order by providing order details in the request body.
  • POST -> /pizza-delivery-api/order


Search Orders

  • Search for pizza delivery orders based on user name, pizza type, and pizza size.
  • GET -> /pizza-delivery-api/order/search
;