No results for

Powered byAlgolia
⚠️ This is the archived documentation for k6 v0.47. 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:

ParamTypeDescription
selectorstringAn optional selector can be specified to extract a specific part of the data, see here for selector syntax.

Returns

TypeDescription
Object or arrayReturns 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());
}