/v1/utils/shorts-url-from-id
Shorts URL
Baut die /shorts/...-URL.
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/youtube-api/v1/utils/shorts-url-from-id" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/youtube-api/v1/utils/shorts-url-from-id", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/youtube-api/v1/utils/shorts-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/shorts-url-from-id",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"shorts_url": "https://www.youtube.com/shorts/dQw4w9WgXcQ"
},
"meta": {
"timestamp": "2026-05-04T13:59:37.748Z",
"request_id": "ef6fb851-8c0f-4e00-982f-ce2a3a9f7490"
},
"status": "ok",
"message": "Shorts URL retrieved successfully",
"success": true
}