Skip to main content
GET
/
v1
/
metadata
Get normalized metadata from any supported video URL
curl --request GET \
  --url https://api.urltodata.ai/v1/metadata \
  --header 'Authorization: Bearer <token>'
{
  "platform": "youtube",
  "type": "video",
  "id": "<string>",
  "url": "<string>",
  "title": "<string>",
  "description": "<string>",
  "author": {
    "username": "<string>",
    "displayName": "<string>",
    "avatarUrl": "<string>",
    "verified": true
  },
  "stats": {
    "views": 123,
    "likes": 123,
    "comments": 123,
    "shares": 123
  },
  "media": {},
  "tags": [
    "<string>"
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "additionalData": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.urltodata.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:your-api-key
required

API key as Bearer token (e.g. Bearer mp_abc123_secret)

Query Parameters

url
string<uri>
required

Video or post URL

Response

200 - application/json

Metadata

platform
enum<string>
Available options:
youtube,
tiktok,
instagram,
twitter,
facebook
type
enum<string>
Available options:
video,
image,
carousel,
post
id
string
url
string
title
string | null
description
string | null
author
object
stats
object
media
object
tags
string[]
createdAt
string<date-time> | null
additionalData
object