Assistenti IA

Microsoft Copilot Video Downloader

Usa Microsoft Copilot Video Downloader con Hunt
Microsoft Copilot Video Downloader con HuntAPI

Usa 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/metadata prima del download
  • Mostrare il progresso con progress (0-100)

Avvio rapido

I download Hunt sono asincroni. Copilot (o il plugin) deve:

  1. Avviare il download → ricevere job_id
  2. Fare poll fino a CompletedJob
  3. 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

  1. Crea un’action / connettore con header x-api-key
  2. Esporre almeno download, jobs e opzionalmente metadata
  3. Poll ogni 1-2 secondi mentre Queued o Running
  4. Chiavi come secret, non in chat

Consigli

  • Preferisci video_quality=720p per video lunghi
  • download_type=audio per MP3
  • Non inventare link; attendi CompletedJob

Correlati

VIDEO API

Discover why Hunt is the preferred API provider for developers.