Back to Course
Rest Assured

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.

Ready to master real-world software testing?

Learn manual and automation testing hands-on with mentor-led sessions.

Explore Course