Naar de inhoud
GET /v1/utils/watch-url-from-id

Watch URL

Baut die /watch?v=...-URL.

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/youtube-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/youtube-api/v1/utils/watch-url-from-id" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/youtube-api/v1/utils/watch-url-from-id", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/youtube-api/v1/utils/watch-url-from-id");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/youtube-api/v1/utils/watch-url-from-id",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "watch_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:37.583Z",
        "request_id": "13a2a5b3-53c0-4bcc-b809-7f611318c34a"
    },
    "status": "ok",
    "message": "Watch URL retrieved successfully",
    "success": true
}