Skip to content

Media Extract

Premium · 5 credits

Extract metadata, format details, and thumbnail URLs from video and audio content. Powered by yt-dlp.

FieldTypeRequiredDescription
urlstringYesVideo or audio URL
FieldTypeDescription
titlestringMedia title
durationnumberDuration in seconds
uploaderstringUploader or channel name
upload_datestringUpload date
view_countintegerView count
like_countintegerLike count
descriptionstringDescription (max 2000 characters)
thumbnailstringThumbnail URL
webpage_urlstringOriginal page URL
extractorstringPlatform extractor used
formatsarrayAvailable formats (max 10)
formats[].format_idstringFormat identifier
formats[].extstringFile extension
formats[].resolutionstringResolution
formats[].vcodecstringVideo codec
formats[].acodecstringAudio codec
formats[].filesizeintegerFile size in bytes
formats[].tbrnumberTotal bitrate
Terminal window
curl -X POST https://morso.dev/api/media-extract \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"}'
{
"title": "Rick Astley - Never Gonna Give You Up",
"duration": 212,
"uploader": "Rick Astley",
"upload_date": "2009-10-25",
"view_count": 1500000000,
"like_count": 15000000,
"description": "The official video for \"Never Gonna Give You Up\" by Rick Astley...",
"thumbnail": "https://i.ytimg.com/vi/dQw4w9WgXcQ/maxresdefault.jpg",
"webpage_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"extractor": "youtube",
"formats": [
{
"format_id": "137",
"ext": "mp4",
"resolution": "1920x1080",
"vcodec": "avc1.640028",
"acodec": "none",
"filesize": 52428800,
"tbr": 2500.0
},
{
"format_id": "140",
"ext": "m4a",
"resolution": "audio only",
"vcodec": "none",
"acodec": "mp4a.40.2",
"filesize": 3500000,
"tbr": 128.0
}
]
}
  • 400 — Missing URL, yt-dlp unavailable, or extraction timeout.

See Errors for the standard error shape.