1. MediaContent
MediaCP Cloud
  • Documentation
    • Channel for customers
      • getApiChannels
      • postApiChannels
      • getApiChannelsId
      • putApiChannelsId
      • deleteApiChannelsId
    • Channel for tenants
      • getApiTenantsChannels
      • postApiTenantsCustomersCustomer_idChannels
    • Customer
      • getApiCustomers
      • postApiCustomers
      • getApiCustomersId
      • putApiCustomersId
      • deleteApiCustomersId
    • LiveEvent
      • postApiLiveEvents
      • getApiLiveEventsId
      • deleteApiLiveEventsId
      • getApiLiveEvents
      • putApiLiveEventsId
    • MediaContent
      • Download
        GET
      • PUT api/media-contents/{id}/uploaded
        PUT
      • getApiMediaContents
        GET
      • postApiMediaContents
        POST
      • getApiMediaContentsId
        GET
      • putApiMediaContentsId
        PUT
      • deleteApiMediaContentsId
        DELETE
    • MediaContent Tags
      • List tags attached to a MediaContent.
      • Attach a tag to a MediaContent.
      • Detach a tag from a MediaContent.
      • GET api/tags
      • POST api/tags
      • GET api/tags/{tag}
      • PUT,PATCH api/tags/{tag}
      • DELETE api/tags/{tag}
      • GET api/media-contents/{mediaContent}/tags
      • POST api/media-contents/{mediaContent}/tags
      • DELETE api/media-contents/{mediaContent}/tags/{tag}
    • Plan
      • getApiPlans
      • postApiPlans
      • getApiPlansId
      • putApiPlansId
      • deleteApiPlansId
    • Publisher
      • getApiChannelsChannel_idPublishers
      • postApiChannelsChannel_idPublishers
      • getApiChannelsChannel_idPublishersId
      • putApiChannelsChannel_idPublishersId
      • deleteApiChannelsChannel_idPublishersId
    • Team member
      • getApiTeamMembers
      • postApiTeamMembers
      • getApiTeamMembersId
      • putApiTeamMembersId
      • deleteApiTeamMembersId
  • MCP Cloud Video
    • Channel for customers
      • GET api/channels
      • POST api/channels
      • GET api/channels/{id}
      • PUT api/channels/{id}
      • DELETE api/channels/{id}
    • Channel for tenants
      • GET api/tenants/channels
      • POST api/tenants/customers/{customer_id}/channels
    • Customer
      • GET api/customers
      • POST api/customers
      • GET api/customers/{id}
      • PUT api/customers/{id}
      • DELETE api/customers/{id}
    • LiveEvent
      • GET api/live-events
      • POST api/live-events
      • GET api/live-events/{id}
      • PUT api/live-events/{id}
      • DELETE api/live-events/{id}
    • MediaContent
      • Download
      • PUT api/media-contents/{id}/uploaded
      • GET api/media-contents
      • POST api/media-contents
      • GET api/media-contents/{id}
      • PUT api/media-contents/{id}
      • DELETE api/media-contents/{id}
    • MediaContent Tags
      • GET api/tags
      • POST api/tags
      • GET api/tags/{tag}
      • PUT,PATCH api/tags/{tag}
      • DELETE api/tags/{tag}
      • GET api/media-contents/{mediaContent}/tags
      • POST api/media-contents/{mediaContent}/tags
      • DELETE api/media-contents/{mediaContent}/tags/{tag}
    • Plan
      • GET api/plans
      • POST api/plans
      • GET api/plans/{id}
      • PUT api/plans/{id}
      • DELETE api/plans/{id}
    • Publisher
      • GET api/channels/{channel_id}/publishers
      • POST api/channels/{channel_id}/publishers
      • GET api/channels/{channel_id}/publishers/{id}
      • PUT api/channels/{channel_id}/publishers/{id}
      • DELETE api/channels/{channel_id}/publishers/{id}
    • Team member
      • GET api/team-members
      • POST api/team-members
      • GET api/team-members/{id}
      • PUT api/team-members/{id}
      • DELETE api/team-members/{id}
  1. MediaContent

getApiMediaContents

GET
/api/media-contents

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/media-contents' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "id": "a1ce7b19-1cb4-42ca-b6a0-de7dc8ecc1e2",
        "name": "t",
        "summary": "Enim sapiente ut est asperiores. Sint fugit ut repellendus nihil excepturi libero ex. Unde ab voluptas et qui maiores.",
        "bitrate": 0,
        "width": 400,
        "height": 400,
        "size": 72266716,
        "total_size": 0,
        "status": "valid",
        "published": true,
        "views": 0,
        "duration": "49:36",
        "stream_url": "https://minio.mediacp.test.net:9005/local/hls//tmp/faker6LiMqa/master.m3u8",
        "created_at": "2026-05-18T05:26:45.000000Z",
        "upload_url": null
    },
    {
        "id": "a1ce7b19-4abe-478f-807b-5d9850373e17",
        "name": "h",
        "summary": "Magnam consequatur est blanditiis eveniet. Fuga ad aperiam laborum eaque quasi exercitationem illo.",
        "bitrate": 0,
        "width": 400,
        "height": 400,
        "size": 50480136,
        "total_size": 0,
        "status": "valid",
        "published": true,
        "views": 0,
        "duration": "01:01:22",
        "stream_url": "https://minio.mediacp.test.net:9005/local/hls//tmp/fakerUUgSEv/master.m3u8",
        "created_at": "2026-05-18T05:26:45.000000Z",
        "upload_url": null
    }
]
Previous
PUT api/media-contents/{id}/uploaded
Next
postApiMediaContents
Built with