Testing A Get API Using Restassured
Purpose of GET
GET requests retrieve data from the server without modifying it, making them the simplest and safest request type to test.
Example
given()
.when()
.get("https://reqres.in/api/users/2")
.then()
.statusCode(200)
.body("data.first_name", equalTo("Janet"));
What to Verify
Check the status code, response structure, correct field values, and that the response time is reasonable.
PreviousPassing Base Url, Headers, Body data, Method type & Endpoint Of API In Restassured
Next Testing A Post API Using Restassured
Ready to master real-world software testing?
Learn manual and automation testing hands-on with mentor-led sessions.
.png)