Get Caption

Fetch a user's studio caption by ID

Info

Required scope: studio.read

Warning

This method requires authentication

Retrieve a specific studio caption owned by the authenticated user.

curl -H "Authorization: Bearer [access token]" \
     https://api.restream.io/v2/user/studio/captions/{captionId}

Path Parameters

ParameterTypeDescription
captionIdstring (UUID)The ID of the caption to retrieve

Response

Success
Error (Not Found)
Error (Unauthorized)
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "text": "Welcome to the stream!",
  "secondaryText": "Follow for more content",
  "brandId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}