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
Name | Location | Type | Required | Description |
---|---|---|---|---|
Authorization | header | string | Yes | Your API key for authentication |
video_no | query | string | Yes | Unique 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
Name | Type | Description |
---|---|---|
code | string | Response status code |
msg | string | Human-readable status message |
data | object | Response data container |
» videoNo | string | The unique video ID |
» videoName | string | title of the video |
» duration | string | length of the video in seconds |
» create_time | string | timestamp of indexing the video |
» video_url | string | original url of the video |
» blogger_id | string | id the the video creator/postor |
» size | int | size of the video in KB |
» status | string | indexing status of the video |