/v1/search
Search coubs by keyword
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/coub-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coub-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coub-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"page": 1,
"coubs": [
{
"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
},
{
"id": 250070944,
"url": "https://coub.com/view/485c3c",
"tags": [
"onestorm #cat #catlover #cats #catvideos #catshorts #catlovers #catholic #catvideo #catsofinstagram",
"onestorm",
"cat",
"catlover",
"cats",
"catvideos",
"catshorts",
"catlovers",
"catholic",
"catvideo",
"catsofinstagram"
],
"likes": 30,
"title": "#onestorm #cat #catlover #cats #catvideos #catshorts #catlovers #catholic #catvideo #catsofinstagram",
"views": 565,
"images": {
"large": "https://attachments-cdn-s.coub.com/coub_storage/coub/simple/cw_image/d60375039c0/9f9792dfa9fe2d941247d/big_1742088946_00032.jpg",
"small": "https://attachments-cdn-s.coub.com/coub_storage/coub/simple/cw_image/d60375039c0/9f9792dfa9fe2d941247d/small_1742088946_00032.jpg",
"medium": "https://attachments-cdn-s.coub.com/coub_storage/coub/simple/cw_image/d60375039c0/9f9792dfa9fe2d941247d/med_1742088946_00032.jpg"
},
"cha
…