Skip to content
Welcome to the new, unified Livepeer documentation! 👋
Reference
Retrieve Multistream Targets

Retrieve Multistream Targets

Use /multistream/target to a return a list of your existing multistream targets.

Request

curl 'https://livepeer.studio/api/multistream/target' \
-H 'authorization: Bearer {api-key}'

Response

200 OK

[
  {
    "id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaa",
    "userId": "bbbbbbbb-bbbb-bbbb-bbbb-bbbb",
    "name": "My First Multistream Target"
  },
  {
    "id": "cccccccc-cccc-cccc-cccc-cccc",
    "userId": "bbbbbbbb-bbbb-bbbb-bbbb-bbbb",
    "name": "My Second Multistream Target"
  }
]

Note: Pagination should be done using the cursor in the Link response header. You can either use the raw link included in the header or extract the cursor and pass it in the cursor query-string in the request.