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}/tickets/{ticketId}
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/tickets/{ticketId}?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved ticket details
Represents a ticket (e.g. for a show)
{ "data": { "id": "string", "kind": "<<enum 'PlayoutKindType'>>", "name": "string", "location": "string", "description": "string", "playtimes": "string", "images": [ … ], "links": [ … ], "groupIds": [ … ], "groups": [ … ], "productIds": [ … ], "products": [ … ] } }
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}/themes
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/themes?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved list of themes
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}/themes/{themeId}
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/themes/{themeId}?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved theme details
Represents a theme
{ "data": { "id": "string", "kind": "<<enum 'PlayoutKindType'>>", "name": "string", "subtitle": "string", "author": "string", "dateCreated": "string", "description": "string", "images": [ … ], "links": [ … ], "groupIds": [ … ], "groups": [ … ], "productIds": [ … ], "products": [ … ] } }