/v1/coub
One coub in full by permalink
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}