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}/locations
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/locations?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved list of locations
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}/locations/{locationId}
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/locations/{locationId}?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved location details
Represents a location
{ "data": { "id": "string", "kind": "<<enum 'PlayoutKindType'>>", "name": "string", "title": "string", "subtitle": "string", "description": "string", "street": "string", "addition": "string", "postcode": "string", "city": "string", "country": "string", "longitude": "string", "latitude": "string", "images": [ … ], "links": [ … ], "groupIds": [ … ], "groups": [ … ] } }
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}/costumes
curl -i -X GET \
'https://docs.jay-metadata.com/_mock/apis/playout/latest/openapi/playouts/{playoutId}/episodes/{episodeId}/costumes?inlineLevel=1' \
-H 'X-API-Key: string' \
-H '__Secure-jay_tracking: __Secure-jay_tracking=eyJzZX...'
Successfully retrieved list of costumes
The response data.
{ "data": [ { … } ] }