# incoming stream info

**URL:** https://community.wowza.com/t/incoming-stream-info/46639
**Category:** Wowza Developer Dojo
**Created:** [February 26, 2016, 9:29pm UTC](https://community.wowza.com/t/incoming-stream-info/46639 "2016-02-26T21:29:41Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Alessandro\_Pinato](https://avatars.discourse-cdn.com/v4/letter/a/ecccb3/32.png) [@Alessandro\_Pinato](https://community.wowza.com/u/Alessandro_Pinato)
#### Post date: [February 26, 2016, 9:29pm UTC](https://community.wowza.com/t/incoming-stream-info/46639/1 "2016-02-26T21:29:41Z")

</div>

Hi,

Is there any REST query to know

- stream bit rate

- video heigh and width

Regards

---

<div class="post-metadata">

### Author: ![Matt\_Young](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/matt_young/32/389_2.png) [@Matt\_Young](https://community.wowza.com/u/Matt_Young)
#### Post date: [February 29, 2016, 9:46am UTC](https://community.wowza.com/t/incoming-stream-info/46639/2 "2016-02-29T09:46:50Z")

</div>

The closest I believe you can come to that type of information is to leverage the following endpoint:

GET /v2/servers/_defaultServer_/vhosts/_defaultVHost_/applications/live/instances/_definst_/incomingstreams/myStream/monitoring/current

cURL Example:

```auto
curl -X GET --header 'Accept:application/json' --header 'Content-type:application/json; charset=utf-8' http://localhost:8087/v2/servers/_defaultServer_/vhosts/_defaultVHost_/applications/live/instances/_definst_/incomingstreams/myStream/monitoring/current

```

This will yield the following results:

```auto
{
  "uptime": 71,
  "bytesIn": 3941783,
  "bytesOut": 0,
  "bytesInRate": 55098,
  "bytesOutRate": 0,
  "totalConnections": 0,
  "connectionCount": {
    "CUPERTINO": 0,
    "RTP": 0,
    "MPEGDASH": 0,
    "SMOOTH": 0,
    "RTMP": 0,
    "SANJOSE": 0
  },
  "applicationInstance": "_definst_",
  "name": "myStream"
}

```

You could build an [HTTP Provider](https://www.wowza.com/docs/how-to-create-an-http-provider) to get further information if desired.

Thanks,

Matt

---

<div class="post-metadata">

### Author: ![Matt\_Young](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/matt_young/32/389_2.png) [@Matt\_Young](https://community.wowza.com/u/Matt_Young)
#### Post date: [March 10, 2016, 9:25am UTC](https://community.wowza.com/t/incoming-stream-info/46639/3 "2016-03-10T09:25:00Z")

</div>

Currently you would need to develop an HTTP Provider to get this information.

Thanks,

Matt

---

<div class="post-metadata">

### Author: ![Alessandro\_Pinato](https://avatars.discourse-cdn.com/v4/letter/a/ecccb3/32.png) [@Alessandro\_Pinato](https://community.wowza.com/u/Alessandro_Pinato)
#### Post date: [March 3, 2016, 10:48am UTC](https://community.wowza.com/t/incoming-stream-info/46639/4 "2016-03-03T10:48:12Z")

</div>

Thanks. What about stream video format? Is it possible to get Width and Height of the inbound stream?
