-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add API Doc * Update API.md Co-authored-by: Christoph <[email protected]> * Update README.md Co-authored-by: Christoph <[email protected]> * Update API.md Co-authored-by: Christoph <[email protected]> Co-authored-by: Jonas <[email protected]> Co-authored-by: Christoph <[email protected]>
- Loading branch information
1 parent
0fa0fa7
commit ae68660
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# ZomStream API | ||
Zomstream provides a RESTful API that can be used to query for streams. | ||
As of API version 0.2, there are two API endpoints: | ||
## List of active streams | ||
You can query for a list of active streams, by sending a GET request to | ||
`localhost:8080/api/streams/` | ||
Here's an example query and the expected result: | ||
|
||
`$ curl http://localhost:8080/api/v0.2/streams/` | ||
Response example: | ||
```json | ||
{ | ||
"streams": | ||
[ | ||
{"app":"live","name":"foo"}, | ||
{"app":"live","name":"bar"} | ||
] | ||
} | ||
|
||
``` | ||
i.e. There are two active streams in the `live` app, namely foo and bar. More information about the streams can be queried as follows. | ||
|
||
## Query Stream information | ||
If you know the app and name of the stream you want to query, you can request more information,with a query like this: | ||
`$ curl http://localhost:8080/api/v0.2/streams/foo/` | ||
Response example: | ||
```json | ||
{ | ||
"streams":{ | ||
"app":"live", | ||
"name":"foo", | ||
"urls": | ||
[ | ||
{"type":"http_flv","url":"https://localhost:8080/flv?app=live&stream=foo"}, | ||
{"type":"rtmp","url":"rtmp://localhost/live/foo"} | ||
] | ||
} | ||
} | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters