Is online status still from streams endpt in v5 api?

Hello,

I made a mistake, the curl output does indeed show {status:null} but the http request does not show status:null, but the error message. How do I send a http request to get the status null?
Here’s what I am doing now:

var url = ‘https://api.twitch.tv/kraken/streams/4432289’;
$http(
{ method : ‘jsonp’ ,
url: url,
dataType: “jsonp”,
headers: { ‘Accept’: ‘application/vnd.twitchtv.v5+json’ },
params: { client_id: ‘xxxxxxetc’, format: ‘jsonp’, callback: ‘JSON_CALLBACK’, limit: $scope.limitview } })
.success(function(data) {

this give an error instead of stream: null

thanks for any help!