free get api for testing code example
Example 1: dummy api json
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
console.log(xhr.responseText);
};
xhr.send();
Example 2: dummy api
React Fakers is a collection of dummy data from the most popular dummy data
providers such as Json Place Holder, Faker, Pokemon, etc,
for application development testing.
npm i react-fakers | yarn add react-fakers
Example 3: benefits of api testing
We can start testing process EARLY and the more bugs we
catch in API level testing, the less bugs we will see on UI. API
level of application is developed before the UI part.
Test for Core Functionality: API testing provides access to
the application without a user interface.
Time Effective: API testing usually is less time consuming
than functional GUI testing. The web elements in GUI testing
must be polled, which makes the testing process slower
Language-Independent: In API testing, data is exchanged
using XML or JSON. These transfer modes are completely
language-independent
Easy Integration with GUI: API tests enable highly integrable
tests, which is particularly useful if you want to perform
functional GUI tests after API testing.