The playout API of the Media Jay application provides access to the playout data and orchestrates extended queries.
To access the endpoints you require a X-API-Key in the header. Partners, please contact Transfermedia support@transfermedia.de to retrieve one.
To use a specific implementation version of this API place it to the request header X-API-Version. If the header is missed the latest implementation version 2025-08-04 is used. The response header X-API-Version returns the implementation version the request was processed with.
For further details please visit the documentation or contact Transfermedia support@transfermedia.de.
https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/
The playout identifier (aka tenant identifier) addressing the correct content of the streaming platform.
https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/groups
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/groups?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved list of groups
The response data.
{ "data": [ { … } ] }
The playout identifier (aka tenant identifier) addressing the correct content of the streaming platform.
https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/groups/{groupId}
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/groups/{groupId}?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved group details
Represents a group of elements (actors, locations, musics, products, etc.)
{ "data": { "id": "string", "kind": "<<enum 'PlayoutKindType'>>", "mainMenu": true, "name": "string", "subtitle": "string", "description": "string", "images": [ … ], "links": [ … ], "layout": "string", "groupIds": [ … ], "groups": [ … ], "characterIds": [ … ], "characters": [ … ], "actorIds": [ … ], "actors": [ … ], "locationIds": [ … ], "locations": [ … ], "costumeIds": [ … ], "costumes": [ … ], "productIds": [ … ], "products": [ … ], "propIds": [ … ], "props": [ … ], "ticketIds": [ … ], "tickets": [ … ], "themeIds": [ … ], "themes": [ … ], "basicIds": [ … ], "basics": [ … ], "musicIds": [ … ], "musics": [ … ] } }