Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/coub-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}