Assistenti IA
Microsoft Copilot Video Downloader
Usa Microsoft Copilot Video Downloader con HuntUsa Microsoft Copilot con HuntAPI per scaricare video, estrarre audio e ottenere metadati. Funziona con Copilot Studio, plugin e agent REST.
Cosa puoi fare
- Incollare un URL video in Copilot e ottenere un link CDN
- Estrarre solo audio per trascrizioni o podcast
- Chiamare
https://api.huntapi.com/v1/media/metadataprima del download - Mostrare il progresso con
progress(0-100)
Avvio rapido
I download Hunt sono asincroni. Copilot (o il plugin) deve:
- Avviare il download → ricevere
job_id - Fare poll fino a
CompletedJob - Restituire
result.response
Avvia download
GET https://api.huntapi.com/v1/video/download?query=https://www.youtube.com/watch?v=VIDEO_ID
x-api-key: YOUR_API_KEY
{ "job_id": "0193443f-fb80-9d19-29ba-82bc77c7cd84" }
Poll stato e progresso
GET https://api.huntapi.com/v1/jobs/0193443f-fb80-9d19-29ba-82bc77c7cd84
x-api-key: YOUR_API_KEY
{
"status": "Running",
"progress": 63,
"result": null
}
Quando status è CompletedJob, leggi result.response.
Solo metadati
GET https://api.huntapi.com/v1/media/metadata?query=https://www.youtube.com/watch?v=VIDEO_ID
x-api-key: YOUR_API_KEY
Sincrono: { "metadata": { ... } } nella stessa risposta.
Setup Copilot Studio
- Crea un’action / connettore con header
x-api-key - Esporre almeno download, jobs e opzionalmente metadata
- Poll ogni 1-2 secondi mentre
QueuedoRunning - Chiavi come secret, non in chat
Consigli
- Preferisci
video_quality=720pper video lunghi download_type=audioper MP3- Non inventare link; attendi
CompletedJob
Correlati
VIDEO API
Discover why Hunt is the preferred API provider for developers.