main_bg

Web API Interview Questions

Prepare for your Web API interview with a curated list of Web API interview questions and insightful answers. Enhance your knowledge of RESTful APIs and be well-prepared for your next job interview in web development.

1. What is a Web API?

A Web API (Application Programming Interface) is a set of rules and tools for building software applications. It allows different software applications to communicate with each other over the web using standard protocols.

2. What are the common HTTP methods used in Web API?

The common HTTP methods used in Web API are GET, POST, PUT, DELETE, PATCH, and OPTIONS. They represent standard CRUD (Create, Read, Update, Delete) operations.

3. What are the main return types supported in Web API?

It does not have any specific data type. It can return data of any type depending upon the business requirement. There are many HTTP methods like GET, POST, PUT, etc., which can return data in different formats depending upon the use case. 

4. What is the difference between Web API and WCF?

WCF (Windows Communication Foundation): It is a framework used for developing SOAP (Service-oriented applications). This framework is used for developing, configuring, and deploying, or implementing network-distributed services. 

Web API: It is an application programming interface for both web browsers and web servers. Browser API simply extends or increases the functionality of web browsers whereas Server API simply extends or increases the functionality of web server.

Web API WCF
It is used to develop both SOAP-based services and RESTful services. It is used to deploy only SOAP-based services.
It supports various MVC features such as routing, model binding, etc. It does not support any MVC features.
It only supports HTTP protocol. It supports various protocols such as HTTP, UDP, custom transport.
It is considered best for developing RESTFUL services. It supports only limited RESTFUL services.
It is good when one wants to expose an expensive range of clients such as iPhones, browsers, mobile phones, tablets, etc. It is good for creating services that uses expedite transport channels such as TCP, UDP, Named pipes, etc.
It offers support for UTF-8 encoding format. It offers TEXT, Binary encoding support, MTOM (Message Transmission Optimization Mechanism), etc.

5. Why to choose Web API over WCF?

Web API is considered the best choice over WCF because of the following reasons:

  • Web API uses all features of HTTP such as URIs, request/response headers, caching, versioning, various content formats, etc.
  • One does not have to define or explain any extra config setting for different devices in Web API.
  • Web API uses different text formats including XML because of which it is faster and more preferred for lightweight services.
  • Web API also supports MVC features whereas WCF does not support MVC features.
  • Web API provides more flexibility as compared to WCF.
  • Web API uses standard security like token authentication, basic authentication, etc., to provide secure service whereas WCF uses WS-I standard to provide secure service. 

6. What is different between REST API and RESTful API?

REST (Representation State Transfer) API:  It is basically an architectural style that makes productive use of existing technology and protocols of the web. It is a set of rules that developers need to follow when they develop their API or services that are scalable. It is used with HTTP protocol using its verbs such as GET, DELETE, POST, PUT. 
RESTful API: It is simply referred to as web services executing such as architecture.  

REST API RESTful API
REST is an architectural pattern used for creating web services. RESTful API is used to implement that pattern.
The data format of REST is based on HTTP. The data format of RESTful is based on JSON, HTTP, and Text.
Working of URL is based on request and response. Working of RESTful is based on REST applications.
It is more user-friendly and highly adaptable to all business enterprises and IT. It is too flexible.
It is required to develop APIs that allow interaction among clients and servers. It simply follows REST infrastructure that provides interoperability among different systems on the whole network.

7. What are the advantages of using Rest in Web API?

REST is very important and beneficial in Web API because of the following reasons:

  • It allows less data transfer between client and server.
  • It is easy to use and lightweight.
  • It provides more flexibility.
  • It also handles and controls various types of calls, returning various data formats.
  • It is considered best for using it in mobile apps because it makes less data transfer between client and server.
  • It uses simple HTTP calls for inter-machine communication rather than using more complex options like CORBA, COM+, SOAP, or RPC. 

8. What is Web API 2.0?

It is basically an enhanced and modified feature of Web API. This new version supports various new features as given below:

  • New Routing Attribute
  • Secure ASP.NET Web API using OAuth 2.0
  • Support for Cross-Origin requests using CORS
  • IHttpActionResult return type
  • Support for $expand, $select in OData Service

Because of all the new features of Web API 2.0, it is considered an optimal choice and suitable development model that makes it easier to develop RESTful services interfaces to different clients running on various platforms. It also supports configuring routes in the Web API method or controller level.

9. Web API supports which protocol?

Web API generally supports only HTTP protocol. 

10. Which of the following Open-source libraries is used by WEB API for JSON serialization?

Json.NET library is generally used by Web API for JSON serialization. 

11. What is XML and JSON?

XML (Extensible Markup Language): 

  • It is especially designed to store and transport data.
  • It is similar to HTML but is more flexible than HTML because it allows users to create their own custom tags.
  • It is used for representing structured information such as documents, data, configuration, etc.


JSON (JavaScript Object Notation): 

  • It is a lightweight format designed to store and transport data.
  • It is easier to understand and is a standard text-based format used for representing structured data based on JavaScript object syntax.
  • It is faster and easier to use. 

12. Who can consume Web API?

A large range of clients such as browsers, mobile devices, iPhone, etc., include or consume web API. It is also good for using along native applications that require web services but not SOAP support. It can also be consumed by any client that supports HTTP verbs such as GET, DELETE, POST, PUT.

13. How to handle errors in Web API?

Web API generally provides greater flexibility in terms of handling errors. Exception handling is a technique that is used to handle run-time errors in application code. One can use HttpResponseException, HttpError, Exception filters, register exception filters, Exception handlers to handle errors. Exception filter can be used to identify unhandled exceptions on actions or controllers, exception handlers can be used to identify any type of unhandled exception application-wide, and HttpResponseException can be used when there is the possibility of an exception. 

14. How to register an exception filter globally?

One can register exception filter globally using following code:
GlobalConfiguration.Configuration.Filters.Add (new MyTestCustomerStore.NotImplExceptionFilterAttribute());
 

15. What is ASP.NET Web API?

ASP stands for Active server pages. ASP.NET is an updated version of legacy ASP. It is a framework that is used for developing HTTP services to provide responses to client requests. It can be accessed in different applications on different platforms. It is provided by Microsoft open-source technology for developing and consuming HTTP-based services on top of .NET Framework.  It is very easy to build HTTP services using ASP.NET Web API. These services can be used by different clients as given below:

  • Desktop Applications
  • Mobile Applications
  • IOTs
  • Browsers

16. What are the advantages of using ASP.NET Web API?

Some of the core advantages of using ASP.NET Web API are given below:

  • It provides the best platform for developing RESTful applications on .NET Framework.
  • It works the same way that HTTP works with help of HTTP verbs such as GET, POST, PUT, DELETE for all crud operations.
  • It provides enough flexibility in Web API creation.
  • It completely supports routing.
  • It also supports model binding, validation, Odata (Open Data Protocol) that allows creation and consumption of RESTful APIs.
  • It has the ability to develop custom help and test pages with help of ApiExplorer.
  • One can develop non-SOAP-based services such as plain XML, JSON strings, etc.
  • It also increases the TDD (Test Data-Driven) approach in the development of RESTful services. 

17. What are new features used in ASP.NET Web API 2.0

ASP.NET Web API includes a number of new exciting features as given below:

  • Attribute Routing
  • CORS (Cross-Origin Resource Sharing)
  • OWIN (Open Web Interface for .NET) self-hosting
  • IHttpActionResult
  • Web API OData

18. What is the use of HttpResponseMessage?

It is used to set response values such as header and status control. It simply allows us to work with HTTP protocol. It represents HTTP response messages that encapsulate data and status code. 

// GetEmployee action public HttpResponseMessage GetEmployee(int id) {          Employee emp = EmployeeContext.Employees.Where(e => e.Id == id).FirstOrDefault();      if (emp != null)       {                return Request.CreateResponse<Employee>(HttpStatusCode.OK, emp);           }     else           {                return Request.CreateErrorResponse(HttpStatusCode.NotFound, "Employee Not Found");       } }

19. What is the difference between ApiController and Controller?

ApiController: It is used to return data that is arranged in series and then sent to the client.

public class TweetsController : ApiController{         // GET: /Api/Tweets/          public List<Tweet> Get()      {          return Twitter.GetTweets();       }} 

Controller: It is used to provide normal views.  

public class TweetsController : Controller {          // GET: /Tweets/  [HttpGet]  public ActionResult Index()        {               return Json(Twitter.GetTweets(), JsonRequestBehavior.AllowGet);         }}

20. What do you mean by Caching and What are its types?

Caching is basically a technique or process of storing data somewhere or in the cache for future requests. The cache is a temporary storage area. Caching keeps all frequently or recently accessed files or data in the cache memory and accesses them from the cache itself rather than actual address of data or files. The cache interface simply improves the storage mechanism for request/response object pairs that are being cached.

Advantages of Caching:

  • It is considered the best solution to ensure that data is served where it is needed to be served that too at a high level of efficiency which is best for both client and server.
  • It delivers web objects faster to the end-user.
  • It reduces load time on the website server.
  • It leads to faster execution of any process.
  • It decreases network costs.

Types of Caching:
There are basically three types of caching as given below:

  • Page Caching
  • Data Caching
  • Fragment Caching

21. WCF is replaced by ASP.NET Web API. True/False?

WCF: It is a framework used for developing SOAP (Service Oriented Applications Protocols). It also supports various transport protocols as given above. 
ASP.NET Web API: It is a framework used for developing non-SOAP-based services. It is limited to HTTP-based services.

No, it's not true that ASP.NET Web API has replaced WCF. WCF was generally developed to develop SOAP-based services. ASP.NET Web API is a new way to develop non-SOAP-based services such as XML, JSON, etc. WCF is still considered a better choice if one has their service using HTTP as the transport and they want to move to some other transport like TCP, NetTCP, MSMQ, etc. WCF also allows one-way communication or duplex communication. 

22. What are the main return types supported in ASP. Net Web API?

It supports the following return types:

  • HttpResponseMessage
  • IHttpActionResult
  • Void
  • Other types such as string, int, etc. 

23. HOW to secure ASP.NET Web API?

Web API has become key to programming web-based interactions. It can be accessed by anyone who knows the URL. Therefore, they have become targets for hackers. One needs to secure Web API by controlling Web API and by deciding who can and who cannot have access to Web API. There are basically two ways or techniques that make our Web API more secure. 

Authentication: It is a process that helps to identify and check users by their credentials such as password, username, etc. To have access to the web API, firstly user credentials are needed to be passed in the request header. If user credentials are not passed into the request header, then the server returns 401 status code (unauthorized). The best authentication to be used is OAuth 2.0. 

Authorization: It is a process that helps to decide whether or not a user has access to perform an action. Authorization filters are used to implement authorization.

24. What are Exception filters in ASP.NET Web API?

Exception filter is generally used to handle all unhandled exceptions that are generated in web API. It implements IExceptionFilters interface. It is the easiest and most flexible to implement. This filter is executed whenever the controller method throws any unhandled exception at any stage that is not an HttpResponseExecption exception. 

25. Which .NET framework supports ASP.NET Web API?

.NET Framework 4.0 generally supports the first version of ASP.NET Web API. After that, .NET Framework 4.5 supports the latest version of web API i.e., ASP.NET Web API 2.

26. What is HttpConfiguration in Web API?

It is considered as the main class that includes different properties with help of which one can override the default behavior of Web API. 

Some properties are given below:

  • DependencyResolver: It sets or gets a dependency resolver for dependency injection.
  • Services: It gets web API services.
  • ParameterBindingRules: It gets a collection of rules for how parameters should be bound.
  • MessageHandlers:  It sets or gets message handlers.
  • Formatters: It sets or gets media-type formatters.

27. Can we return View from ASP.NET Web API method?

No, we cannot return the view from the ASP.NET Web API method. ASP.NET web API develops HTTP services that provide raw data or information. ApiController in ASP.NET MVC application only renders data that is serialized and sent to the client. One can use a controller to provide normal views. 

28. What is content negotiation in ASP.Net Web API?

Content negotiation is basically a process of selecting the best representation from multiple representations that are available for a given response. It simply allows one to choose rather than negotiate content that one wants to get in response. It is performed at the server-side. In simple words, it chooses the best media type for matters to return a response to an incoming request. 

29. Difference between HTTP GET vs HTTP Post?

HTTP (HyperText Transfer Protocol) simply manages request-response between client and server. It works as a request-response protocol between client and server. 

HTTP GET: This method is used to get information or data from a respective server at a specified URL.

Example: 
GET/RegisterStudent.asp?user=value1&pass=value2

HTTP POST: This method is used to send data or information to respective servers. 

Example:
POST/RegisterStudent.asp HTTP/1.1 
Host: www.guru99.com  
user=value1&pass=value2  

HTTP GET HTTP POST
Its parameters are included in the URL. Its parameters are included in the body.
This method is used to request data from specified resources and has no other effect. This method is used to send data to a server to create or update resources.
It carries a request parameter appended in the URL string. It carries request parameters in the message body that make it a more secure way of sending data or information from the client to the server.
Request method using GET is cacheable. Request method using POST is not cacheable.
GET requests are less safe than POST. Post request is safer than GET.
There is a restriction on data type in GET method and only ASCII characters are allowed. There are no restrictions on data type in this method and binary data is also allowed.
Data is visible to everyone in the URL. Data is not displayed in the URL. It is present in the payload.

30. Name method that validates all controls on page?

Page.Validate()

31. What parameters can be passed in the URL of API?

Context keys, documents keys, or anything that initiates API to hit the exact end-point are few parameters that one can pass in the URL to define the complete end-point.  

32. What is the use of DelegatingHandler?

DelegatingHandler is used to develop a custom Server-Side HTTP Message Handler in ASP.NET Web API. It is used to represent Message Handlers before routing in Web API. 

33. Web API uses which library for JSON serialization?

Json.NET library is used by Web API for JSON serialization. 

34. Explain method to handle error using HttpError in Web API?

CreateErrorResponse is an extension method that can be used in Web API controller methods to return error codes and error messages. It creates an HttpError object and then wraps it inside an HttpResponseMessage object. 

35. How to unit test Web API?

Using Web API tools like Fiddler, we can perform unit testing in Web API. Fiddler is basically a free debugging proxy for any browser that can be used to compose and execute various HTTP requests to Web API and check HTTP response. It is simply used for testing restful web services. It allows one to inspect and check both incoming and outgoing data to monitor and modify requests and responses before the browser receives them.  Below is given some setting that is needed to be done fiddler:

Fiddler – Compose Tab -> Enter Request Headers -> Enter Request Body and then execute.

36. Conclusion

Web API is an extensible framework that serves us information from the server and is used for developing ASP.NET. It is totally based on Http and is easy to define, expose and consume in a REST-ful way. It is considered an ideal platform for developing RESTful applications on .NET framework. From the above Web API interview questions and answers, you can learn more about Web API, its importance, its benefits, etc.  

37. Code Snippet: Simple Web API Endpoint

            
// Example using Node.js and Express
const express = require('express');
const app = express();

app.get('/api/greet', (req, res) => {
    res.json({ message: 'Hello, World!' });
});

app.listen(3000, () => {
    console.log('Server is running on port 3000');
});
            
        

38. Online Resources:

Published On: 2024-01-31