Streamio API Documentation

Audios - List

Returns a list of audios from your account filtered and sorted on the parameters your specify.

Request

Url

https://streamio.com/api/v1/audios.format

Request Method

GET

Parameters

Response

Code

200

Body

[
{
"account_id": "5d00b3796f8d8d4d7d000002",
"created_at": "2019-10-17T10:25:35.633Z",
"description": null,
"duration": 187.09,
"plays": 27,
"state": "ready",
"tags": [
"podcast"
],
"title": "Adventure - Music: https://www.bensound.com",
"updated_at": "2021-05-12T11:45:05.066Z",
"id": "5da8419f6f8d8d76ce000003",
"original_file": {
"http_uri": "cdn0-70011-odedge0.dna.ip-only.net/70011-odedge0/original_audios/5d00b3796f8d8d4d7d000002_5da8419f6f8d8d76ce000003.mp3?r=0",
"size": 4490761
},
"transcodings": [
{
"progress": 1.0,
"size": 4490806,
"state": "ready",
"http_uri": "cdn0-70011-odedge0.dna.ip-only.net/70011-odedge0/audios/5d00b3796f8d8d4d7d000002_5da8419f6f8d8d76ce000003_streamio-mp3.mp3?r=0",
"rtmp_uri": null,
"rtmp_base_uri": null,
"rtmp_stream_uri": null,
"bitrate": 192,
"id": "5da8419f6f8d8d76ce000004"
}
]
}
]
view raw audio-list.json hosted with ❤ by GitHub

Examples

Query on tags

Find audios tagged with "sports" or "nature" with the tags parameter.

curl -u username:password https://streamio.com/api/v1/audios.json?tags=sports%2Cnature

Find audios tagged with both "sports" and "england" with the tags.all parameter.

curl -u username:password https://streamio.com/api/v1/audios.json?tags.all=sports%2Cengland