@lujerex just comment out the if else and console.log(response.items) If it is an object instead of an array calling .length on it will return undefined and throw an error in the console causing your if else not to evaluate. To fix this you will need to call Object.keys() on the returned object and then check it’s length.