/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}