Skip to main content
GET
/
media
/
{media_type}
/
{filename}

Overview

Retrieves uploaded media files like videos, images, and audio files.

Path Parameters

media_type
string
required
Type of media (video, audio, image)
filename
string
required
Filename of the media file

Response

Returns the binary file content with appropriate content-type headers.

Examples

curl -X GET https://api.judge.example.com/media/video/sample.mp4 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  --output video.mp4