Introduction
Collection runner results show you the outcome of running a group of API requests together. They help you see which requests worked and which did not.
Jump into concepts and practice - no test required
No specific code syntax; collection runner results are shown in the Postman app interface or exported as JSON.
Run a collection in Postman Collection Runner and view the results tab.
Export collection runner results as JSON from the Postman app.
{
"run": {
"stats": {
"iterations": 1,
"requests": 3,
"tests": 3,
"assertions": 3
},
"executions": [
{
"item": "Get User",
"request": {
"method": "GET",
"url": "https://api.example.com/user/1"
},
"response": {
"code": 200,
"body": "{\"id\":1,\"name\":\"Alice\"}"
},
"tests": {
"Status code is 200": true
}
},
{
"item": "Update User",
"request": {
"method": "PUT",
"url": "https://api.example.com/user/1"
},
"response": {
"code": 200,
"body": "{\"id\":1,\"name\":\"Alice Updated\"}"
},
"tests": {
"Status code is 200": true
}
},
{
"item": "Delete User",
"request": {
"method": "DELETE",
"url": "https://api.example.com/user/1"
},
"response": {
"code": 204,
"body": ""
},
"tests": {
"Status code is 204": true
}
}
]
}
}