Skip to main content
Version: v1.2

Get Public Video Details

Use this API to retrieve the details & metadata of a video from public video sources.

Prerequisites

  • You’re familiar with the concepts described on the Platform overview page.
  • You have a valid memories.ai API key.

Host URL

  • https://api.memories.ai

Endpoint

GET /serve/api/v1/get_public_video_detail


Request Example

import requests

headers = {"Authorization": "<API_KEY>"}

params = {"video_no": "PI-594031499251159058"}

response = requests.get("https://api.memories.ai/serve/api/v1/get_public_video_detail", headers=headers, params=params)

print("Status:", response.status_code)
try:
print("Audio Transcription Response:", response.json())
except Exception:
print("Response Text:", response.text)

Request Parameters

NameLocationTypeRequiredDescription
AuthorizationheaderstringYesYour API key for authentication
video_noquerystringYesUnique video number returned after upload

Response Example

Status code 200

{
"code": "0000",
"msg": "success",
"data": {
"duration": "102",
"size": "212191",
"status": "PARSE",
"video_no": "PI-594031499251159058",
"video_name": "huge vintage haul from @Dangginaaaa’s liquidation sale 🖤 found so many dream pieces ngl #vintageclothes #vintagefashion #vintagestyle #estatesale #estatesalefinds #estatesales #thrifted #thriftfinds #thrifthaul #tryonhaul ",
"create_time": "1751087257180",
"video_url": "https://www.tiktok.com/@victoria/video/7488029699684273438",
"blogger_id": "victoria"
}
}

Response Structure

NameTypeDescription
codestringResponse status code
msgstringHuman-readable status message
dataobjectResponse data container
» videoNostringThe unique video ID
» videoNamestringtitle of the video
» durationstringlength of the video in seconds
» create_timestringtimestamp of indexing the video
» video_urlstringoriginal url of the video
» blogger_idstringid the the video creator/postor
» sizeintsize of the video in KB
» statusstringindexing status of the video