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}/props/{propId}
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/props/{propId}?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved prop details
Represents a property
{ "data": { "id": "string", "kind": "<<enum 'PlayoutKindType'>>", "type": "string", "name": "string", "brand": "string", "subtitle": "string", "description": "string", "gender": "string", "category": "string", "fit": "string", "material": "string", "color": "string", "colorCode": "string", "country": "string", "images": [ … ], "imagesLogo": "string", "imagesLogoCopyright": "string", "links": [ … ], "sku": "string", "price": "string", "priceFloat": 0, "originalPrice": "string", "currency": "string", "variantsCompact": "string", "variants": [ … ], "groupIds": [ … ], "groups": [ … ], "linkedToProductIds": [ … ], "linkedToProducts": [ … ], "basketProductId": "string" } }
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}/musics
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/musics?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved list of musics
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}/musics/{musicId}
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/musics/{musicId}?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved music details
Represents an audio track
{ "data": { "id": "string", "kind": "<<enum 'PlayoutKindType'>>", "name": "string", "subtitle": "string", "description": "string", "artist": "string", "album": "string", "duration": "string", "images": [ … ], "links": [ … ], "groupIds": [ … ], "groups": [ … ] } }