This is documentation for the next version of K6. For the latest stable release, go to the latest version.
Response.json( [selector] )
Parses the response body data as JSON and returns a JS object or array. This call caches the deserialized JSON data, additional calls will return the cached data. An optional selector can be specified to extract a specific part of the data, see here for selector syntax.
This method takes an object argument where the following properties can be set:
Param | Type | Description |
---|---|---|
selector | string | An optional selector can be specified to extract a specific part of the data, see here for selector syntax. |
Returns
Type | Description |
---|---|
Object or array | Returns the response body as JSON object. |
Example
import http from 'k6/http';
export default function () {
const res = http.get('https://test-api.k6.io/public/crocodiles/');
console.log(res.json());
}