For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
StatusSupportDiscussionsLog inSign Up
Docs HomeAPI ReferenceVideo on DemandAI FeaturesLive StreamingVideo PlayerVideo DataCloud PlayoutRecipes
Docs HomeAPI ReferenceVideo on DemandAI FeaturesLive StreamingVideo PlayerVideo DataCloud PlayoutRecipes
  • ACTIVATE ACCOUNT
    • Create account
  • PRODUCT OS API
    • Overview
  • ERROR CODES
    • Error codes
  • VIDEO ON DEMAND API
    • Overview
  • LIVE STREAM API
    • Overview
      • GETGet all live streams
      • GETGet stream views by ID
      • GETGet stream by ID
      • DELDelete a stream
      • PATCHUpdate a stream
      • PUTEnable a stream
      • PUTDisable a stream
      • PUTComplete a stream
  • VIDEO DATA API
    • Overview
LogoLogo
StatusSupportDiscussionsLog inSign Up
LIVE STREAM APIManage live stream

Get all live streams

GET
https://api.fastpix.com/v1/live/streams
GET
/v1/live/streams
$curl https://api.fastpix.com/v1/live/streams \
> -u "<username>:<password>"
200Retrieved
1{
2 "success": true,
3 "data": [
4 {
5 "streamId": "fa7f8c0950ea48ebcc5ef9de8c23deaa",
6 "streamKey": "3dc5d7641f918baa083a5c52a5bd9cbckfa7f8c0950ea48ebcc5ef9de8c23deaa",
7 "srtSecret": "c51739512d0088d98a46925c9b74c73akfa7f8c0950ea48ebcc5ef9de8c23deaa",
8 "trial": false,
9 "status": "idle",
10 "maxResolution": "1080p",
11 "maxDuration": 28800,
12 "createdAt": "2024-10-15T08:48:31.551351Z",
13 "reconnectWindow": 100,
14 "enableRecording": true,
15 "enableDvrMode": true,
16 "mediaPolicy": "public",
17 "metadata": {
18 "livestream_name": "Gaming_stream"
19 },
20 "lowLatency": false,
21 "closedCaptions": false,
22 "playbackIds": [
23 {
24 "id": "4e43ec52-4775-4f68-a3ff-a57d8a59bba8",
25 "accessPolicy": "public"
26 }
27 ],
28 "mediaIds": [
29 "03cdf35d-8626-4b5f-bd14-d2212cd2a991"
30 ],
31 "srtPlaybackResponse": {
32 "srtPlaybackStreamId": "playfa7f8c0950ea48ebcc5ef9de8c23deaa",
33 "srtPlaybackSecret": "490e707dd4d165c9e38d261b252f9457kfa7f8c0950ea48ebcc5ef9de8c23deaa"
34 }
35 }
36 ],
37 "pagination": {
38 "totalRecords": 4,
39 "currentOffset": 1,
40 "offsetCount": 4
41 }
42}
Retrieves a list of all live streams associated with the current workspace. It provides an overview of both current and past live streams, including details like `streamId`, `metadata`, `status`, `createdAt` and more. #### How it works Use the access token and secret key related to the workspace in the request header. When called, the API provides a paginated response containing all the live streams in that specific workspace. This is helpful for retrieving a large volume of streams and managing content in bulk.
Was this page helpful?
Previous

Get stream views by ID

Next
Built with

Retrieves a list of all live streams associated with the current workspace. It provides an overview of both current and past live streams, including details like streamId, metadata, status, createdAt and more.

How it works

Use the access token and secret key related to the workspace in the request header. When called, the API provides a paginated response containing all the live streams in that specific workspace. This is helpful for retrieving a large volume of streams and managing content in bulk.

Authentication

AuthorizationBasic

FastPix APIs are secured with Basic Authentication. Use your Access Token ID as the username and Secret Key as the password in the Authorization header of each API request.

  • Username: Access Token ID
  • Password: Secret Key

Activate your FastPix account to generate your API credentials. See the guide here

Query parameters

limitintegerOptional1-50Defaults to 10
Limit specifies the maximum number of items to display per page.
offsetintegerOptionalDefaults to 1
Offset determines the starting point for data retrieval within a paginated list.
orderByenumOptionalDefaults to desc

The list of value can be order in two ways DESC (Descending) or ASC (Ascending). In case not specified, by default it will be DESC.

Allowed values:

Response

All streams retrieved sucessfully
successboolean
Shows the request status. Returns true for success and false for failure.
datalist of objects
Displays the result of the request.
paginationobject
Pagination organizes content into pages for better readability and navigation.