FastPix lets you attach metadata to any livestream at the time of creation. This metadata can be used to label the stream, organize dashboards, or trigger automations in your systems.
Metadata for livestreams is a simple JSON object attached during stream creation. It stays with the stream and any recorded archive, making it useful for classification and integration.
Example:
Similar rules as VOD:
Before you can add metadata to a livestream, you must first create a stream with the FastPix API. To see the full definition of this endpoint, request parameters, and example responses, refer to the Create new stream API.
You can update the livestream’s metadata using the Update live stream endpoint. For complete details on all supported fields and response formats, refer to the Update live stream API.
Include your metadata inside the inputMediaSettings object when creating a new livestream.
You can add metadata to a livestream directly from the FastPix Dashboard during or after stream creation. This is useful for tagging streams with names, IDs, or contextual information that downstream workflows and analytics can use.
Open the FastPix dashboard.
Go to Products > Live Streams.
Click Create live stream.
In the creation form:
Enter a Stream name (optional but recommended).
Configure stream settings such as resolution, reconnect window, and access policy.
Click Run Request.
At this point, FastPix generates your stream details, including the stream key and playback IDs.

Use this API to update metadata:
Example:
📘 NOTE
- No partial updates: This is a replace-only operation. Fields not included in the request will be deleted.
- Schema rules apply: Keys must be strings; values must be strings or numbers. No nesting or arrays allowed.
- Max 10 pairs: If you send more than 10 fields, the extra ones will be silently dropped.
Name every stream using a unique slug or timestamp
Tag by region or use case (for example, “region”: “NA”, “use_case”: “webinar”)
Use metadata to power overlays or real-time workflows
Avoid updating post-creation unless necessary (replaces full object)
Example use cases