Holen Sie sich detaillierte Informationen über YouTube-Kanäle wie Abonnentenzahlen, Videoanzahl und Gesamtaufrufe – einfach über Handle oder Channel-ID.
Diese API erfordert einen gültigen API-Token. Tokens können in Ihrem Profil unter Profil → API-Token erzeugt und verwaltet werden.
🔑 Token-Übermittlungsmöglichkeiten:
Authorization: Bearer YOUR_API_TOKEN
?token=YOUR_API_TOKEN (Query-Parameter)
X-API-Token: YOUR_API_TOKEN (Header)
token=YOUR_API_TOKEN (POST/PUT Body)
Basis-URL: https://creativeskyline.de/api/youtube
/api/youtube/stats/{identifier}
Ruft aktuelle Statistiken für einen YouTube-Kanal ab. Der Identifier kann ein Handle (z.B. @YouTube) oder eine Channel-ID (UC...) sein.
identifier - YouTube Handle oder Channel-ID
curl "https://creativeskyline.de/api/youtube/stats/@YouTube" \ -H "Authorization: Bearer YOUR_API_TOKEN"
curl "https://creativeskyline.de/api/youtube/stats/UCBR8-60-B28hp2BmDPdntcQ" \ -H "Authorization: Bearer YOUR_API_TOKEN"
{
"success": true,
"data": {
"channel_id": "UCBR8-60-B28hp2BmDPdntcQ",
"handle": "@YouTube",
"title": "YouTube",
"description": "YouTube's official channel...",
"subscriber_count": 40000000,
"video_count": 500,
"view_count": 3000000000,
"thumbnail_url": "https://...",
"last_synced_at": "2026-01-12T10:00:00Z"
}
}