API is an acronym for Application Programming Interface.
In software application (app) development, API is the middle layer between the presentation (UI) and the database layer. APIs enable communication and data exchange from one software system to another.
API testing is a software testing practice that tests the APIs directly — from their functionality, reliability, performance, to security. Part of integration testing, API testing effectively validates the logic of the build architecture within a short amount of time.
Benefits of API Testing
Language-independent
Data is exchanged via XML and JSON formats, so any language can be used for test automation. XML and JSON are typically structured data, making the verification fast and stable. There are also built-in libraries to support comparing data using these data formats.
GUI-independent
API testing can be performed in the app prior to GUI testing. Early testing means early feedback and better team productivity. The app’s core functionalities can be tested to expose small errors and to evaluate the build’s strengths.
Improved test coverage
Most API/web services have specifications, allowing you to create automated tests with high coverage — including functional testing and non-functional testing.
Faster releases
It is common that executing API testing saves up to eight hours compared to UI testing, allowing software development teams to release products faster.
The first part of API testing involves setting up a testing environment, with the required set of parameters around the API. This involves configuring the database and server for the application’s requirements.
Once you’ve set up your API testing environment, make an API call right away to make sure nothing is broken before you go forward to start your more thorough testing.
You can start combining your application data with your API tests to ensure that the API performs as expected against possible known input configurations.
Next, you need to organize yourself around the API test. Start by asking yourself these questions:
After you’ve created these testing boundaries and requirements, you need to decide what you want to test your API for.
The kinds of tests you will run will vary, but these are common API test examples, as you can see, they are very similar to the reasons why you would want to test your API:
Bibliografía
https://www.katalon.com/api-testing/
https://www.soapui.org/learn/functional-testing/api-testing-101/