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
      • POSTCreate a playbackId
      • DELDelete a playbackId
      • GETGet playbackId details
  • VIDEO DATA API
    • Overview
LogoLogo
StatusSupportDiscussionsLog inSign Up
LIVE STREAM APILive playback

Get playbackId details

GET
https://api.fastpix.com/v1/live/streams/:streamId/playback-ids/:playbackId
GET
/v1/live/streams/:streamId/playback-ids/:playbackId
$curl https://api.fastpix.com/v1/live/streams/61a264dcc447b63da6fb79ef925cd76d/playback-ids/61a264dcc447b63da6fb79ef925cd76d \
> -u "<username>:<password>"
200Retrieved
1{
2 "success": true,
3 "data": {
4 "id": "88b7ac0f-2504-4dd5-b7b4-d84ab4fee1bd",
5 "accessPolicy": "public"
6 }
7}
Retrieves details for an existing playback ID. When you provide the playbackId returned from a previous stream or playback creation request, FastPix returns the associated playback information, including the access policy. #### Example A developer needs to confirm the access policy of the playback ID to ensure whether the stream is public or private for viewers.
Was this page helpful?
Previous

Create a simulcast

Next
Built with

Retrieves details for an existing playback ID. When you provide the playbackId returned from a previous stream or playback creation request, FastPix returns the associated playback information, including the access policy.

Example

A developer needs to confirm the access policy of the playback ID to ensure whether the stream is public or private for viewers.

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

Path parameters

streamIdstringRequired
After creating a new live stream, FastPix assigns a unique identifier to the stream.
playbackIdstringRequired
After creating a new playbackId, FastPix assigns a unique identifier to the playback.

Response

Stream details retrieved successfully
successboolean
Shows the request status. Returns true for success and false for failure.
dataobject