GET https://p.savenow.to/ajax/download.php
Create a download job
Send format, url, apikey, and add_info=1 to request the normal job response plus metadata.
Video info API
Add add_info=1 to the download endpoint to receive structured title and thumbnail metadata with the accepted job response, then continue through the same API key, pricing, docs, and progress polling workflow.
Endpoint
curl "https://p.savenow.to/ajax/download.php?format=mp4&url=VIDEO_URL&apikey=YOUR_API_KEY&add_info=1"
p.savenow.to is the default shared API host used in public examples. If your dashboard shows a custom API hostname, use that account-specific host instead.
Workflow
Video info does not require a separate account or endpoint. It is a download request option for products that need metadata before or alongside the final media file.
GET https://p.savenow.to/ajax/download.php
Send format, url, apikey, and add_info=1 to request the normal job response plus metadata.
info.title and info.image
Use the returned title and thumbnail URL in previews, save dialogs, QA logs, moderation queues, or import screens.
/ajax/progress?id=JOB_ID
The metadata is available on the accepted response. Use the job id for progress and final file delivery.
Response
info.image and info.title directly
Keep metadata parsing simple: the structured info object is the contract for title and thumbnail fields. The content field is for generated UI snippets, not metadata extraction.
Accepted job response
{
"success": true,
"id": "video-info-job-123",
"content": "PGRpdiBjbGFzcz0iZG93bmxvYWQtY29udGVudCI+Li4uPC9kaXY+",
"info": {
"image": "https://i.ytimg.com/vi/K1Pu75yJUOE/maxresdefault.jpg",
"title": "Amazing Video Title - 4K Quality"
}
}
Use cases
Title and thumbnail fields help products confirm the right source video, label jobs clearly, and make download flows easier to review.
Show a title and thumbnail preview before a user starts watching download progress.
Attach source metadata to downloaded media records, dashboards, or customer exports.
Validate that a pasted URL resolves to the expected video before storing the job.
Build internal QA or moderation workflows that need thumbnail and title context.
FAQ
When metadata is available, the accepted download response includes an info object with image for the thumbnail URL and title for the video title.
The request still follows the download endpoint pricing path for the selected format. Use the pricing page to estimate usage before production traffic.
No. Read the structured info object for title and thumbnail metadata, then use the returned id for progress polling.
Docs and pricing
The OpenAPI reference documents add_info, the response schema, and progress polling. Pricing stays tied to the selected download format and account usage.