🚀 Jetzt neu: FlowAI! Ein revolutionärer Chat mit personalisierten AI-Agenten. 🌟

YouTube API
Kanal-Analysen & Statistiken

Holen Sie sich detaillierte Informationen über YouTube-Kanäle wie Abonnentenzahlen, Videoanzahl und Gesamtaufrufe – einfach über Handle oder Channel-ID.

🚀 Schnellstart

API-Token erforderlich

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)

📚 API-Endpunkte

Basis-URL: https://creativeskyline.de/api/youtube

📊 Kanal-Statistiken

GET /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.

Pfad-Parameter:

required identifier - YouTube Handle oder Channel-ID

✨ Features & Capabilities

📊 Echtzeit-Statistiken

  • • Aktuelle Abonnentenzahlen
  • • Gesamtzahl aller Video-Uploads
  • • Akkumulierte Aufrufe des Kanals
  • • Automatische Aktualisierung alle 24h

🧩 Flexibler Zugriff

  • • Support für YouTube Handles (@name)
  • • Support für technische Channel-IDs
  • • Automatische ID-Auflösung
  • • Titel und Beschreibungen

💻 Code-Beispiele

Statistiken abrufen (via Handle)

curl "https://creativeskyline.de/api/youtube/stats/@YouTube" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Statistiken abrufen (via ID)

curl "https://creativeskyline.de/api/youtube/stats/UCBR8-60-B28hp2BmDPdntcQ" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Beispiel-Response

{
  "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"
  }
}