Vai al contenuto
GET /v1/coub

One coub in full by permalink

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "coub": {
            "id": 250070461,
            "url": "https://coub.com/view/485bpx",
            "tags": [
                "onestorm #cat #catlover #cats #catvideos #catshorts #catlovers #catholic #catvideo #catsofinstagram",
                "onestorm",
                "cat",
                "catlover",
                "cats",
                "catvideos",
                "catshorts",
                "catlovers",
                "catholic",
                "catvideo",
                "catsofinstagram"
            ],
            "likes": 103,
            "title": "#onestorm #cat #catlover #cats #catvideos #catshorts #catlovers #catholic #catvideo #catsofinstagram",
            "views": 1437,
            "images": {
                "large": "https://attachments-cdn-s.coub.com/coub_storage/coub/simple/cw_image/007f04b1946/48e21abd17065765065df/big_1742088692_00032.jpg",
                "small": "https://attachments-cdn-s.coub.com/coub_storage/coub/simple/cw_image/007f04b1946/48e21abd17065765065df/small_1742088692_00032.jpg",
                "medium": "https://attachments-cdn-s.coub.com/coub_storage/coub/simple/cw_image/007f04b1946/48e21abd17065765065df/med_1742088692_00032.jpg"
            },
            "channel": {
                "title": "Onestorm",
                "permalink": "onestorm"
            },
            "recoubs": 71,
            "permalink": "485bpx",
            "created_at": "2025-03-16T01:31:15Z",
            "duration_sec": 10.04
        },
        "source": "Coub"
    },
    "meta": {
        "timestamp": "2026-06-13T14:06:05.050Z",
        "request_id": "47690b94-85fb-47aa-8ce2-fe017bf8608b"
    },
    "status": "ok",
    "message": "Coub retrieved successfully",
    "success": true
}