Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/coub-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/coub-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coub-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coub-api/v1/meta");
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/coub-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "Coub public API v2 (live)",
        "service": "coub-api",
        "endpoints": {
            "GET /v1/tag": "Newest coubs for a tag (tag=cats, limit).",
            "GET /v1/meta": "This document.",
            "GET /v1/channel": "A channel's profile + recent coubs (name=coubteam, limit).",
            "GET /v1/explore": "Trending coubs (category=rising|hot|random, limit)."
        },
        "description": "Live looping-video data from Coub, the social platform of short seamlessly looping clips: the trending feed (rising, hot or random) with view, like and recoub counts, duration, channel and tags; the newest coubs for a tag — the hashtag feed of Coub; and a creator's channel profile (title, followers, recoubs) with their most recent coubs. Each clip includes the watch URL, channel handle, human tags and several preview-image sizes. Live, no key, nothing stored. Distinct from YouTube, Vimeo and Dailymotion video APIs — this is Coub's looping clips by trend, tag and channel.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:19.640Z",
        "request_id": "8818554f-680f-494f-b20c-59f0f5735482"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}