What is the difference between a web API and a web service?

Technology CommunityCategory: ASP.NETWhat is the difference between a web API and a web service?
VietMX Staff asked 3 years ago
  • A web service typically offers a WSDL from which you can create client stubs automatically. Web Services are based on the SOAP protocol.
  • ASP.NET Web API is a newer Microsoft framework which helps you to build REST based interfaces. The response can be either JSON or XML, but there is no way to generate clients automatically because Web API does not offer a service description like the WSDL from Web Services.