Livepeer · Arazzo Workflow

Livepeer Reuse a Standalone Multistream Target

Version 1.0.0

Create a reusable multistream target, then bind it to a new stream by ID.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub VideoStreamingTranscodingDecentralizedWeb3Live VideoAI VideoArazzoWorkflows

Provider

livepeer

Workflows

standalone-multistream-target
Create a standalone multistream target then bind it to a new stream.
Creates a reusable multistream target resource, creates a new stream, and attaches the existing target to the stream by its target ID.
3 steps inputs: authToken, profile, streamName, targetName, targetUrl outputs: streamId, targetId
1
createMultistreamTarget
Create a standalone, reusable multistream target resource pointing at the external destination URL.
2
createStream
Create the stream that will push to the reusable target.
3
bindTarget
Attach the existing multistream target to the stream by referencing the target ID instead of inlining a new spec.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Livepeer Reuse a Standalone Multistream Target
  summary: Create a reusable multistream target, then bind it to a new stream by ID.
  description: >-
    Creates a multistream target as a standalone, reusable resource first, then
    creates a stream and attaches the existing target to that stream by ID
    (rather than inlining a new target spec). This pattern is useful when the
    same restream destination is shared across many streams. Every step spells
    out its request inline so the flow can be read and executed without opening
    the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: multistreamApi
  url: ../openapi/livepeer-multistream-api-openapi.yml
  type: openapi
- name: streamApi
  url: ../openapi/livepeer-stream-api-openapi.yml
  type: openapi
workflows:
- workflowId: standalone-multistream-target
  summary: Create a standalone multistream target then bind it to a new stream.
  description: >-
    Creates a reusable multistream target resource, creates a new stream, and
    attaches the existing target to the stream by its target ID.
  inputs:
    type: object
    required:
    - authToken
    - targetName
    - targetUrl
    - streamName
    properties:
      authToken:
        type: string
        description: Livepeer API key used as a Bearer token.
      targetName:
        type: string
        description: Friendly name for the reusable multistream target.
      targetUrl:
        type: string
        description: RTMP(S) or SRT URL of the external restream destination.
      streamName:
        type: string
        description: Name of the stream to create and bind the target to.
      profile:
        type: string
        description: Rendition profile to push to the target.
        default: source
  steps:
  - stepId: createMultistreamTarget
    description: >-
      Create a standalone, reusable multistream target resource pointing at the
      external destination URL.
    operationId: createMultistreamTarget
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.authToken
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.targetName
        url: $inputs.targetUrl
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      targetId: $response.body#/id
  - stepId: createStream
    description: Create the stream that will push to the reusable target.
    operationId: createStream
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.authToken
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.streamName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      streamId: $response.body#/id
  - stepId: bindTarget
    description: >-
      Attach the existing multistream target to the stream by referencing the
      target ID instead of inlining a new spec.
    operationId: addMultistreamTarget
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.authToken
    - name: id
      in: path
      value: $steps.createStream.outputs.streamId
    requestBody:
      contentType: application/json
      payload:
        profile: $inputs.profile
        videoOnly: false
        id: $steps.createMultistreamTarget.outputs.targetId
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    targetId: $steps.createMultistreamTarget.outputs.targetId
    streamId: $steps.createStream.outputs.streamId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/livepeer-standalone-multistream-target-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.