Skip to main content

What is API?

In general way, API (Application Programming Interface) is the intermediate software which is useful for two applications to communicate. API is the tool which is used for interaction of two applications. If developer developing any software which have multiple blocks (Modules) than developer use APIs to put them together.
In Computer Programming Language, APIs is the set of Routines, Protocols and tools for develop Software. An API  may be use for Web Based System, Operating System, Database System, Computer Hardware and Software Library. GUI (Graphical User Interface) is useful to used APIs to develop the Software.

There are some APIs which are popular in market
  • Google Map API is useful for the for embed google map in web pages. It works on both desktop and mobile devices.
  • YouTube API can be use to integrate YouTube Video in Web Page. YouTube API include the YouTube Analytics API, YouTube Data API, YouTube Live Streaming API, YouTube Players API.
  • Flickr API is useful to get the flickr photo sharing community data. 
  • Twitter API offer API, one is REST API to access the Twitter core data and the Search API to interest with Twitter Search and trends data.
Now you can understand by above example that large companies make their own APIs to provide the data of that product for the customers or for the internal use.

API also provide some layer of security. When any user request for API data from any website than server is not fully exposed to the request, only communication occur only in small blocks and share only which data which is useful.

Let me provide you one real time example that you use generally.
User can book the flight on any flight booking website. In this user fill the Source city, Destination city, Date and the Number of passenger and send the request to the server. Server respond back and provide flights detail and user can book flight.
Now Suppose same client using MakeMyTrip or Goibibo to book flight. Here user fill same detail like above and send request. Now this user request send to the Flight booking server( which MMT or Goibibo used as API) and respond same data as above.





Comments

Popular posts from this blog

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.