Us this to verify. function isJSON(str) { if( typeof( str ) !== 'string' ) { return false; } try { JSON.parse(str); return true; } catch (e) { return false; } }