> **For coding agents and LLMs:** This is one page from the Social Fetch docs (markdown export). The sections below mirror the orientation block in [`/llms.txt`](https://www.socialfetch.dev/llms.txt); use [`/llms.json`](https://www.socialfetch.dev/llms.json) when you need a structured operation inventory. The catalog covers documented operations with on-site reference pages.

## This page

- **On-site (HTML):** [https://www.socialfetch.dev/docs/api/v1/youtube/shorts/trending/get](https://www.socialfetch.dev/docs/api/v1/youtube/shorts/trending/get)
- **Markdown (.mdx) URL:** [https://www.socialfetch.dev/docs/api/v1/youtube/shorts/trending/get.mdx](https://www.socialfetch.dev/docs/api/v1/youtube/shorts/trending/get.mdx)

## API base URL and authentication

- **API origin (from OpenAPI `servers`):** `https://api.socialfetch.dev`
- **Authentication:** send `x-api-key: sfk_...` on `/v1/**` routes unless the operation is explicitly anonymous (check OpenAPI `security`, the [API reference hub](https://www.socialfetch.dev/docs/api.mdx), [`/llms.txt`](https://www.socialfetch.dev/llms.txt), or [`/llms.json`](https://www.socialfetch.dev/llms.json) for each route).
- **OpenAPI JSON:** [https://www.socialfetch.dev/openapi.json](https://www.socialfetch.dev/openapi.json)

## Recommended docs entrypoints (this site)

- [Documentation overview](https://www.socialfetch.dev/docs.mdx) — top-level orientation (markdown).
- [Quickstart](https://www.socialfetch.dev/docs/quickstart.mdx) — authenticate with `x-api-key`, validate auth with `whoami`, and understand the JSON envelope.
- [SDK](https://www.socialfetch.dev/docs/sdk.mdx) — official TypeScript SDK guide, including `SocialFetchClient`, `Result`, and `unwrap()`.
- [SDK reference](https://www.socialfetch.dev/docs/sdk-reference.mdx) — exhaustive SDK method inventory and route mapping for agents, tooling, and power users.
- [Choose the right endpoint](https://www.socialfetch.dev/docs/choose-endpoint.mdx) — task-oriented route selection for smoke tests, profiles, list endpoints, and single-item lookups.
- [Capability matrix](https://www.socialfetch.dev/docs/capability-matrix.mdx) — fast comparison of identifiers, pagination, outcomes, media download, and SDK coverage.
- [`/llms.json`](https://www.socialfetch.dev/llms.json) — structured machine-readable operation inventory with parameter names, pagination, outcomes, credits, and SDK mapping.
- [API reference hub](https://www.socialfetch.dev/docs/api.mdx) — human-friendly index of operations with links into generated pages.
- [Errors](https://www.socialfetch.dev/docs/errors.mdx) — shared error envelope and HTTP status guidance.
- [Credits](https://www.socialfetch.dev/docs/credits.mdx) — metering, `402`, and planning batch jobs.
- Outcome semantics such as `found`, `not_found`, and `private` are documented in [Errors](https://www.socialfetch.dev/docs/errors.mdx) and on operation pages when present in the OpenAPI contract.

## Markdown docs convention

- Every docs page has a markdown twin: append **`.mdx`** to the docs pathname (for example `/docs/quickstart` → `/docs/quickstart.mdx`).
- Agents that send `Accept: text/markdown` on `/docs/**` HTML URLs may receive markdown directly (same URL, `Vary: Accept`).

---
# List trending YouTube Shorts (https://www.socialfetch.dev/docs/api/v1/youtube/shorts/trending/get)

## Summary

Discover currently trending YouTube Shorts.

**Tags:** `YouTube`

## HTTP

- **Method:** GET
- **Path:** `/v1/youtube/shorts/trending`
- **Base URL:** `https://api.socialfetch.dev`

## Capability summary

- **SDK mapping:** `client.youtube.getTrendingShorts()`
- **Pagination:** none

## Authentication

- **`x-api-key`**: API key (`sfk_...`)

## Responses (status codes)

- **200**: Trending YouTube Shorts for this request (typically about 48; see `data.totalResults`).
- **401**: Missing or invalid API key
- **402**: Insufficient credits
- **500**: Unexpected or billing error
- **502**: Lookup could not be completed from the response (unexpected or invalid data).
- **503**: Service temporarily unavailable; safe to retry with backoff.

## Response body (200)

Trending YouTube Shorts for this request (typically about 48; see `data.totalResults`).

### Field outline

- **data** (required) — type `object`. Endpoint-specific response payload.
  - **shorts** (required) — type `array`. Trending YouTube Shorts for this request—typically about 48 items. Call the endpoint again for another fresh batch that may include Shorts not returned earlier.
    - _items:_
      - **id** (required) — type `string`; minLength: 1. YouTube Short identifier.
      - **url** (required) — type `string`; nullable. Canonical public YouTube URL for the Short.
      - **title** (required) — type `string`; nullable. Title shown for the Short.
      - **description** (required) — type `string`; nullable. Description text when available.
      - **thumbnailUrl** (required) — type `string`; nullable. Thumbnail image URL when available.
      - **viewCount** (required) — type `integer`; minimum: 0; nullable. View count when available.
      - **viewCountText** (required) — type `string`; nullable. Human-readable view count label when available.
      - **likeCount** (required) — type `integer`; minimum: 0; nullable. Like count when available.
      - **likeCountText** (required) — type `string`; nullable. Human-readable like count label when available.
      - **commentCount** (required) — type `integer`; minimum: 0; nullable. Comment count when available.
      - **commentCountText** (required) — type `string`; nullable. Human-readable comment count label when available.
      - **publishedAt** (required) — type `string`; nullable. Publication timestamp when available.
      - **publishedDateText** (required) — type `string`; nullable. Human-readable publication date label when available.
      - **channel** (required) — type `object`; nullable. Channel metadata when available.
        - **id** (required) — type `string`; nullable. Channel identifier when available.
        - **url** (required) — type `string`; nullable. Channel URL when available.
        - **handle** (required) — type `string`; nullable. Channel handle when available.
        - **title** (required) — type `string`; nullable. Channel title when available.
      - **keywords** (required) — type `array`. Keyword tags associated with the Short when available.
        - _items:_
          - type `string`
      - **durationMs** (required) — type `integer`; minimum: 0; nullable. Duration of the Short in milliseconds when available.
      - **durationText** (required) — type `string`; nullable. Formatted duration label when available.
  - **totalResults** (required) — type `integer`; minimum: 0. Number of Shorts in `data.shorts` for this response (typically about 48 when the feed is available).
- **meta** (required) — type `object`. Metadata describing the request and billing outcome.
  - **requestId** (required) — type `string`; minLength: 1. Unique request identifier for tracing this API call.
  - **creditsCharged** (required) — type `integer`; minimum: 0. Credits charged for this request.
  - **version** (required) — type `string`; enum: v1. Public API version that served the response.

### Example JSON (OpenAPI example)

```json
{
  "data": {
    "shorts": [
      {
        "id": "U6mIjhN8GQo",
        "url": "https://www.youtube.com/watch?v=U6mIjhN8GQo",
        "title": "Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg",
        "viewCount": 18576665,
        "viewCountText": "18,576,665",
        "likeCount": 647486,
        "likeCountText": "647486",
        "commentCount": 1500,
        "commentCountText": "1.5K",
        "publishedAt": "2026-04-09T01:47:21-07:00",
        "publishedDateText": "Apr 9, 2026",
        "channel": {
          "id": "UCdQzLnPnnnqDbgJIwx_M1Sw",
          "url": "https://www.youtube.com/@adnanvlog-p8b",
          "handle": "adnanvlog-p8b",
          "title": "Adnan vlog"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "GBkahsyA-LY",
        "url": "https://www.youtube.com/watch?v=GBkahsyA-LY",
        "title": "Mango cheesecake 🥭",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/GBkahsyA-LY/maxresdefault.jpg",
        "viewCount": 16790092,
        "viewCountText": "16,790,092",
        "likeCount": 281436,
        "likeCountText": "281436",
        "commentCount": 1400,
        "commentCountText": "1.4K",
        "publishedAt": "2026-05-11T13:55:23-07:00",
        "publishedDateText": "May 11, 2026",
        "channel": {
          "id": "UCKNskoTLxHY7EYjMNlYa3kQ",
          "url": "https://www.youtube.com/@surthycooks",
          "handle": "surthycooks",
          "title": "surthany hejeij"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "V-3FSqzBF1Y",
        "url": "https://www.youtube.com/watch?v=V-3FSqzBF1Y",
        "title": "How to Patch a Knot with a Square Plug #shorts #woodworking #diy",
        "description": "節の補修にはさまざまな方法がありますが、今回は四角い埋木を当てる方法を試してみました！\n動画を見て「この方法で本当に上手く埋まるの？」と思われる方もいるかもしれませんが、実は埋木はわずかにテーパー状にカットしてあり、打ち込むことで隙間のない仕上がりになります👍\n\nただ、いちばん難しいのは“木目を合わせること”ですね。\n使用した鑿、鋸はこちら↓\n‪@TempleToolCo‬ \n\n毎日ショート動画を投稿しています！\n高評価＆チャンネル登録よろしくお願いします🙇",
        "thumbnailUrl": "https://img.youtube.com/vi/V-3FSqzBF1Y/maxresdefault.jpg",
        "viewCount": 156059379,
        "viewCountText": "156,059,379",
        "likeCount": 2082345,
        "likeCountText": "2082345",
        "commentCount": 9800,
        "commentCountText": "9.8K",
        "publishedAt": "2025-12-02T03:19:55-08:00",
        "publishedDateText": "Dec 2, 2025",
        "channel": {
          "id": "UC9bZy627A--NKLGtf9LnAJA",
          "url": "https://youtube.com/@twcdesign",
          "handle": "twcdesign",
          "title": "TWCDesign"
        },
        "keywords": [
          "木工",
          "woodworking",
          "diy",
          "asmr",
          "治具",
          "jig",
          "wood",
          "joint"
        ],
        "durationMs": 62000,
        "durationText": "00:01:02"
      },
      {
        "id": "yVJCVW4DcB8",
        "url": "https://www.youtube.com/watch?v=yVJCVW4DcB8",
        "title": "#pov #herramientas #sketch #gracioso #actuación #historia",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/yVJCVW4DcB8/maxresdefault.jpg",
        "viewCount": 36058988,
        "viewCountText": "36,058,988",
        "likeCount": 216265,
        "likeCountText": "216265",
        "commentCount": 286,
        "commentCountText": "286",
        "publishedAt": "2026-04-13T02:47:01-07:00",
        "publishedDateText": "Apr 13, 2026",
        "channel": {
          "id": "UC0mbaobtmSX-dh-kTpx1GIw",
          "url": "https://www.youtube.com/@HirkoMartinel",
          "handle": "HirkoMartinel",
          "title": "Hirko Martinel"
        },
        "keywords": [],
        "durationMs": 19000,
        "durationText": "00:00:19"
      },
      {
        "id": "d_sNTyrdtds",
        "url": "https://www.youtube.com/watch?v=d_sNTyrdtds",
        "title": "Useless Son-in-Law He’s a One-Man Army #shorts #movie",
        "description": "Movie:  Bad Boys\nEditing program: After Effects 2024\n\n#shorts #edit #movie \n\nAll rights reserved\nAll videos, songs, pictures and charts used in the video are the property of their respective owners. Neither I nor this channel asserts any rights for them.\n\nCopyright Disclaimer: According to Article 107 of the Copyright Act of 1976, fair use is permitted for purposes such as news reporting, teaching, academic and research. Fair use refers to the use permitted by copyright law; otherwise, it may constitute infringement. Non-educational or personal use will tip the balance of fair use in favor of fair use. -- -- -- -- -- -- -- -- -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - thanks for watching... !!!!! ❤ ️!",
        "thumbnailUrl": "https://img.youtube.com/vi/d_sNTyrdtds/maxresdefault.jpg",
        "viewCount": 8311468,
        "viewCountText": "8,311,468",
        "likeCount": 456756,
        "likeCountText": "456756",
        "commentCount": 3100,
        "commentCountText": "3.1K",
        "publishedAt": "2026-05-14T07:01:05-07:00",
        "publishedDateText": "May 14, 2026",
        "channel": {
          "id": "UCEYPth-uCtCs7uGqVKUk7aw",
          "url": "https://www.youtube.com/@sir7076",
          "handle": "sir7076",
          "title": "酱sir电影局"
        },
        "keywords": [
          "#shorts",
          "#movie",
          "#edit"
        ],
        "durationMs": 164000,
        "durationText": "00:02:44"
      },
      {
        "id": "0v1zKYx5PaM",
        "url": "https://www.youtube.com/watch?v=0v1zKYx5PaM",
        "title": "هاد الفيديو تمثيلي وكوميدي بالكامل معمول بس لضحك والمتعة وخليكن آمنين وما تجربوا هالشي بالحقيقة 😍",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/0v1zKYx5PaM/maxresdefault.jpg",
        "viewCount": 668143,
        "viewCountText": "668,143",
        "likeCount": 4635,
        "likeCountText": "4635",
        "commentCount": 75,
        "commentCountText": "75",
        "publishedAt": "2026-05-15T06:14:21-07:00",
        "publishedDateText": "May 15, 2026",
        "channel": {
          "id": "UCjwov-qRuC724_FnyF4l-cQ",
          "url": "https://www.youtube.com/@Dirtbike_cross",
          "handle": "Dirtbike_cross",
          "title": "زعران الصان صباب"
        },
        "keywords": [],
        "durationMs": 43000,
        "durationText": "00:00:43"
      },
      {
        "id": "HF07zRJ29L4",
        "url": "https://www.youtube.com/watch?v=HF07zRJ29L4",
        "title": "Donald Duck Bike 🦆",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/HF07zRJ29L4/maxresdefault.jpg",
        "viewCount": 113804,
        "viewCountText": "113,804",
        "likeCount": 1259,
        "likeCountText": "1259",
        "commentCount": 6,
        "commentCountText": "6",
        "publishedAt": "2026-05-14T22:00:25-07:00",
        "publishedDateText": "May 14, 2026",
        "channel": {
          "id": "UCBkIDU5t-Tdae21gsppInlQ",
          "url": "https://www.youtube.com/@PawnEssence",
          "handle": "PawnEssence",
          "title": "Pawn Essence"
        },
        "keywords": [
          "pawn stars",
          "pawn stars clips",
          "pawn shop",
          "history channel",
          "rick harrison",
          "chumlee",
          "corey harrison",
          "best of pawn stars",
          "pawn stars moments",
          "rare collectibles",
          "pawn stars episodes",
          "antique appraisal",
          "historical items",
          "old coins",
          "rare weapons",
          "vintage finds",
          "expert review",
          "big profit",
          "shocking offer",
          "unexpected deals",
          "crazy customers",
          "top 10 deals",
          "rare discovery",
          "most expensive",
          "unbelievable",
          "deal or no deal",
          "insane value",
          "pawn stars season 20",
          "pawn stars experts",
          "scammer"
        ],
        "durationMs": 56000,
        "durationText": "00:00:56"
      },
      {
        "id": "n4jenluE4rk",
        "url": "https://www.youtube.com/watch?v=n4jenluE4rk",
        "title": "Part 17 - What is this called? Ft. Corporate office #corporatememes #officelife #officememes #comedy",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/n4jenluE4rk/maxresdefault.jpg",
        "viewCount": 1915796,
        "viewCountText": "1,915,796",
        "likeCount": 15606,
        "likeCountText": "15606",
        "commentCount": 85,
        "commentCountText": "85",
        "publishedAt": "2026-04-10T05:39:13-07:00",
        "publishedDateText": "Apr 10, 2026",
        "channel": {
          "id": "UCAKBAy9FSkdJ8V_a8LW9Htw",
          "url": "https://www.youtube.com/@sahil_the9to5",
          "handle": "sahil_the9to5",
          "title": "Sahil Gupta Corporate"
        },
        "keywords": [],
        "durationMs": 25000,
        "durationText": "00:00:25"
      },
      {
        "id": "2FtCoDF19as",
        "url": "https://www.youtube.com/watch?v=2FtCoDF19as",
        "title": "People after gas prices go up 💀#gasprices #funny #cars #viral #fyp #relatable #lol #gas",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/2FtCoDF19as/maxresdefault.jpg",
        "viewCount": 5517,
        "viewCountText": "5,517",
        "likeCount": 479,
        "likeCountText": "479",
        "commentCount": 12,
        "commentCountText": "12",
        "publishedAt": "2026-05-18T18:48:50-07:00",
        "publishedDateText": "May 18, 2026",
        "channel": {
          "id": "UCCEITaIExjQnCEEs8vt3MJw",
          "url": "https://www.youtube.com/@PetTalesDaily6",
          "handle": "PetTalesDaily6",
          "title": "FunVibe"
        },
        "keywords": [],
        "durationMs": 71000,
        "durationText": "00:01:11"
      },
      {
        "id": "3_8Dd75mWHM",
        "url": "https://www.youtube.com/watch?v=3_8Dd75mWHM",
        "title": "Under Wool #sheep #shearing #wool",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/3_8Dd75mWHM/maxresdefault.jpg",
        "viewCount": 18989068,
        "viewCountText": "18,989,068",
        "likeCount": 406416,
        "likeCountText": "406416",
        "commentCount": 1500,
        "commentCountText": "1.5K",
        "publishedAt": "2026-05-08T03:46:48-07:00",
        "publishedDateText": "May 8, 2026",
        "channel": {
          "id": "UCTaoFdNdSSgyd1qYwF9z67g",
          "url": "https://www.youtube.com/@Snugbarn",
          "handle": "Snugbarn",
          "title": "Snugbarn"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "U6mIjhN8GQo",
        "url": "https://www.youtube.com/watch?v=U6mIjhN8GQo",
        "title": "Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg",
        "viewCount": 18576665,
        "viewCountText": "18,576,665",
        "likeCount": 647486,
        "likeCountText": "647486",
        "commentCount": 1500,
        "commentCountText": "1.5K",
        "publishedAt": "2026-04-09T01:47:21-07:00",
        "publishedDateText": "Apr 9, 2026",
        "channel": {
          "id": "UCdQzLnPnnnqDbgJIwx_M1Sw",
          "url": "https://www.youtube.com/@adnanvlog-p8b",
          "handle": "adnanvlog-p8b",
          "title": "Adnan vlog"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "KRxH9kw51Dw",
        "url": "https://www.youtube.com/watch?v=KRxH9kw51Dw",
        "title": "Karen Meets Crazy Driver #shorts",
        "description": "Karen thought she’d seen it all… until this driver showed up 😳 #shorts",
        "thumbnailUrl": "https://img.youtube.com/vi/KRxH9kw51Dw/maxresdefault.jpg",
        "viewCount": 11392705,
        "viewCountText": "11,392,705",
        "likeCount": 107777,
        "likeCountText": "107777",
        "commentCount": 3000,
        "commentCountText": "3K",
        "publishedAt": "2026-05-14T05:55:33-07:00",
        "publishedDateText": "May 14, 2026",
        "channel": {
          "id": "UCPJOWJGSd0rkksmR7SeEr5g",
          "url": "https://www.youtube.com/@KarmaOnCamera",
          "handle": "KarmaOnCamera",
          "title": "KarmaOnCamera"
        },
        "keywords": [],
        "durationMs": 26000,
        "durationText": "00:00:26"
      },
      {
        "id": "jcGPJil-Eno",
        "url": "https://www.youtube.com/watch?v=jcGPJil-Eno",
        "title": "Disney’s Healing Paradise-it’s simply wonderful #disney #youtube #disneyland",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/jcGPJil-Eno/maxresdefault.jpg",
        "viewCount": 75551100,
        "viewCountText": "75,551,100",
        "likeCount": 800641,
        "likeCountText": "800641",
        "commentCount": 1600,
        "commentCountText": "1.6K",
        "publishedAt": "2026-02-06T17:49:34-08:00",
        "publishedDateText": "Feb 6, 2026",
        "channel": {
          "id": "UCzHPVir9WTKj0-q9QeSIvZQ",
          "url": "https://www.youtube.com/@happy-funny-m2q",
          "handle": "happy-funny-m2q",
          "title": "Happy Disney"
        },
        "keywords": [],
        "durationMs": 57000,
        "durationText": "00:00:57"
      },
      {
        "id": "wILa1xJMnVI",
        "url": "https://www.youtube.com/watch?v=wILa1xJMnVI",
        "title": "#arknights",
        "description": "Originally priced around $1.5 million, the Mercedes CLR GTR is considered oneof the most exclusive a No\n\nNo problem!\n\nThe Mercedes CLR GTR is a remarkable racing car\n\ncelebrated for its\n\noutstanding performance and sleek design. Powered by a potent 6.0-liter V12\n\nengine, it delivers over 600 horsepower.\n\nX\n\nAcceleration from 0 to 100 km/h takes approximately 3.7 seconds, with a\n\nremarkable top speed surpassing 320 km/h.\n\nIncorporating advanced aerodynamic features and\n\ncutting-edge stability technologies, the CLR GTR ensures exceptional stability and control,\n\nparticularly during high-speed maneuvers.\n\nOriginally priced around $1.5 million, the Mercedes CLR GTR is considered one\n\nof the most exclusive and prestigious racing cars ever produced. s\n\nIts limited production run of just five units adds to its rarity, making it highly\n\nsought after by racing enthusiasts and collectors worldwide.\n\n\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram #instagrambusinessgrowth #socialmediamarketingtips\n\n\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram #instagrambusinessgrowth #socialmediamarketingtips",
        "thumbnailUrl": "https://img.youtube.com/vi/wILa1xJMnVI/maxresdefault.jpg",
        "viewCount": 14186775,
        "viewCountText": "14,186,775",
        "likeCount": 267335,
        "likeCountText": "267335",
        "commentCount": 244,
        "commentCountText": "244",
        "publishedAt": "2026-04-28T10:10:03-07:00",
        "publishedDateText": "Apr 28, 2026",
        "channel": {
          "id": "UCLuPexqip75yLacHQ8-AnIg",
          "url": "https://www.youtube.com/@Taimii_Editzz",
          "handle": "Taimii_Editzz",
          "title": "Taimii_Editzz"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "-Y14qVE0cVU",
        "url": "https://www.youtube.com/watch?v=-Y14qVE0cVU",
        "title": "Making Ice Cream Perfectly😍🍨#shorts#satisfying#icecream#foodasia#asianfood#foodshorts#asmrfood",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/-Y14qVE0cVU/maxresdefault.jpg",
        "viewCount": 18735412,
        "viewCountText": "18,735,412",
        "likeCount": 325195,
        "likeCountText": "325195",
        "commentCount": 354,
        "commentCountText": "354",
        "publishedAt": "2026-04-26T09:30:00-07:00",
        "publishedDateText": "Apr 26, 2026",
        "channel": {
          "id": "UC8FEfTLzBaZfa2JCLez709w",
          "url": "https://www.youtube.com/@mr.rollmaker",
          "handle": "mr.rollmaker",
          "title": "Mr Roll Maker"
        },
        "keywords": [],
        "durationMs": 88000,
        "durationText": "00:01:28"
      },
      {
        "id": "HUm4gMdU0PQ",
        "url": "https://www.youtube.com/watch?v=HUm4gMdU0PQ",
        "title": "Cuộc sống gia đình tài xế trên xe tải tuy vất vả nhưng rất hạnh phúc #truckesvlogs #familyvlog",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/HUm4gMdU0PQ/maxresdefault.jpg",
        "viewCount": 21362554,
        "viewCountText": "21,362,554",
        "likeCount": 195103,
        "likeCountText": "195103",
        "commentCount": 1600,
        "commentCountText": "1.6K",
        "publishedAt": "2026-04-02T17:21:35-07:00",
        "publishedDateText": "Apr 2, 2026",
        "channel": {
          "id": "UC_MS3C7g_ZFvNfVak9c_iAw",
          "url": "https://www.youtube.com/@Truckdrivercouple01",
          "handle": "Truckdrivercouple01",
          "title": "Truck Driver Couple 01"
        },
        "keywords": [],
        "durationMs": 59000,
        "durationText": "00:00:59"
      },
      {
        "id": "F0wK4izLJ3M",
        "url": "https://www.youtube.com/watch?v=F0wK4izLJ3M",
        "title": "Gnochis 🍝 🇮🇹",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/F0wK4izLJ3M/maxresdefault.jpg",
        "viewCount": 140522943,
        "viewCountText": "140,522,943",
        "likeCount": 1920141,
        "likeCountText": "1920141",
        "commentCount": 13000,
        "commentCountText": "13K",
        "publishedAt": "2026-01-24T11:32:18-08:00",
        "publishedDateText": "Jan 24, 2026",
        "channel": {
          "id": "UCKNskoTLxHY7EYjMNlYa3kQ",
          "url": "https://www.youtube.com/@surthycooks",
          "handle": "surthycooks",
          "title": "surthany hejeij"
        },
        "keywords": [],
        "durationMs": 61000,
        "durationText": "00:01:01"
      },
      {
        "id": "FUfwzN5tnSI",
        "url": "https://www.youtube.com/watch?v=FUfwzN5tnSI",
        "title": "Referee Is Really Tired Of This Guy..😂",
        "description": "#shorts #football #viral #viralvideo #trending #foryou #fyp #ronaldo #cristianoronaldo #reaction #moments #soccer #funny",
        "thumbnailUrl": "https://img.youtube.com/vi/FUfwzN5tnSI/maxresdefault.jpg",
        "viewCount": 59671851,
        "viewCountText": "59,671,851",
        "likeCount": 754741,
        "likeCountText": "754741",
        "commentCount": 1000,
        "commentCountText": "1K",
        "publishedAt": "2026-04-19T08:31:08-07:00",
        "publishedDateText": "Apr 19, 2026",
        "channel": {
          "id": "UCf07_zJEZAfr8vPof-2cjTQ",
          "url": "https://www.youtube.com/@Flash_Pass",
          "handle": "Flash_Pass",
          "title": "FlashPass"
        },
        "keywords": [],
        "durationMs": 25000,
        "durationText": "00:00:25"
      },
      {
        "id": "tyIOO2GWfkg",
        "url": "https://www.youtube.com/watch?v=tyIOO2GWfkg",
        "title": "Nobody Saw That coming 😂 | Now you see me 3 (2025) | Heavenly JumpStyle (Slowed)",
        "description": "Nobody Saw That coming 😂 | Now you see me 3 (2025) | Heavenly JumpStyle (Slowed)\n\n#nowyouseeme3 #edits #movie",
        "thumbnailUrl": "https://img.youtube.com/vi/tyIOO2GWfkg/maxresdefault.jpg",
        "viewCount": 45300,
        "viewCountText": "45,300",
        "likeCount": 852,
        "likeCountText": "852",
        "commentCount": 9,
        "commentCountText": "9",
        "publishedAt": "2026-05-18T11:14:37-07:00",
        "publishedDateText": "May 18, 2026",
        "channel": {
          "id": "UCgmA9uKsOUSifAszc4z-UgQ",
          "url": "https://www.youtube.com/@realMibby",
          "handle": "realMibby",
          "title": "Mibby"
        },
        "keywords": [
          "now you see me",
          "movie edit",
          "edit",
          "movie",
          "edits",
          "now you see me 3"
        ],
        "durationMs": 46000,
        "durationText": "00:00:46"
      },
      {
        "id": "fyKmcVhOaas",
        "url": "https://www.youtube.com/watch?v=fyKmcVhOaas",
        "title": "BMW #اكسبلور_explore #automobile #محركات #انستغرام #اكسبلور #bmw",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/fyKmcVhOaas/maxresdefault.jpg",
        "viewCount": 12851755,
        "viewCountText": "12,851,755",
        "likeCount": 137829,
        "likeCountText": "137829",
        "commentCount": 608,
        "commentCountText": "608",
        "publishedAt": "2026-05-05T05:14:10-07:00",
        "publishedDateText": "May 5, 2026",
        "channel": {
          "id": "UCbNwd_UkDKLkgf4t4Sj5IyQ",
          "url": "https://www.youtube.com/@LordMax0",
          "handle": "LordMax0",
          "title": "Lord Max"
        },
        "keywords": [],
        "durationMs": 13000,
        "durationText": "00:00:13"
      },
      {
        "id": "U6mIjhN8GQo",
        "url": "https://www.youtube.com/watch?v=U6mIjhN8GQo",
        "title": "Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg",
        "viewCount": 18576665,
        "viewCountText": "18,576,665",
        "likeCount": 647486,
        "likeCountText": "647486",
        "commentCount": 1500,
        "commentCountText": "1.5K",
        "publishedAt": "2026-04-09T01:47:21-07:00",
        "publishedDateText": "Apr 9, 2026",
        "channel": {
          "id": "UCdQzLnPnnnqDbgJIwx_M1Sw",
          "url": "https://www.youtube.com/@adnanvlog-p8b",
          "handle": "adnanvlog-p8b",
          "title": "Adnan vlog"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "30rSrICnJcU",
        "url": "https://www.youtube.com/watch?v=30rSrICnJcU",
        "title": "#edit",
        "description": "Originally priced around $1.5 million, the Mercedes CLR GTR is considered oneof the most exclusive a\nNo\n\nNo problem! \n\nThe Mercedes CLR GTR is a remarkable racing car celebrated for its\noutstanding performance and sleek design. Powered by a potent 6.0-liter V12\nengine, it delivers over 600 horsepower.\n🔧\n\nAcceleration from 0 to 100 km/h takes approximately 3.7 seconds, with a\nremarkable top speed surpassing 320 km/h. 🥇\n\nIncorporating advanced aerodynamic features and cutting-edge stability\ntechnologies, the CLR GTR ensures exceptional stability and control,\nparticularly during high-speed maneuvers.🌬\n\nOriginally priced around $1.5 million, the Mercedes CLR GTR is considered one\nof the most exclusive and prestigious racing cars ever produced. 💰\n\nIts limited production run of just five units adds to its rarity, making it highly\nsought after by racing enthusiasts and collectors worldwide. 🌍\n\n\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram\n#instagrambusinessgrowth #socialmediamarketingtips\n@ntp_ffi\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram\n#instagrambusinessgrowth #socialmediamarketingtips by Krishn by",
        "thumbnailUrl": "https://img.youtube.com/vi/30rSrICnJcU/maxresdefault.jpg",
        "viewCount": 1661864,
        "viewCountText": "1,661,864",
        "likeCount": 11640,
        "likeCountText": "11640",
        "commentCount": 58,
        "commentCountText": "58",
        "publishedAt": "2026-05-12T08:31:33-07:00",
        "publishedDateText": "May 12, 2026",
        "channel": {
          "id": "UCmiloC6Qvp6rAjbi_mbBtnw",
          "url": "https://www.youtube.com/@TROLLZEFX",
          "handle": "TROLLZEFX",
          "title": "TROLLZ EFX"
        },
        "keywords": [],
        "durationMs": 12000,
        "durationText": "00:00:12"
      },
      {
        "id": "pFWlbpYyJKE",
        "url": "https://www.youtube.com/watch?v=pFWlbpYyJKE",
        "title": "Which one is your favorite? 🇺🇸 Follow americantravelarchives for more hidden gems and bucket list",
        "description": "Which one is your favorite? 🇺🇸\n\nFollow americantravelarchives for more hidden gems and bucket list adventures across the US\n\nWe love our country so much! And today being Earth Day makes us remember all the trips we’ve been able to take and the opportunity to explore so many amazing spots!\n\nHere are the spots on this video:\n📍 Hillsborough River State Park, Florida\n📍Great Smoky Mountains, Tennessee\n📍Alys Beach, Florida\n📍Rosemary Beach, Florida\n📍Seaside, Florida\n📍Million Dollar Highway, Colorado\n📍Trail Ridge Road, Colorado\n📍Black Canyon of the Gunnison, Colorado\n📍Bear Lake, Colorado\n📍Maroon Bells, Colorado\n📍Garden of the Gods, Colorado\n📍Delicate Arch, Utah\n📍Bryce Canyon, Utah\n📍Mesa Arch, Utah\n📍Forrest Gump Point, Utah\n📍Moonscape Overlook, Utah\n📍Sequoia National Park, California\n📍Kings Canyon National Park, California\n\nWe can’t wait to explore even more states around the US and share our adventures with y’all!\n\nWhat’s your favorite spot around the US?",
        "thumbnailUrl": "https://img.youtube.com/vi/pFWlbpYyJKE/maxresdefault.jpg",
        "viewCount": 735699,
        "viewCountText": "735,699",
        "likeCount": 11437,
        "likeCountText": "11437",
        "commentCount": 1000,
        "commentCountText": "1K",
        "publishedAt": "2026-04-22T09:11:26-07:00",
        "publishedDateText": "Apr 22, 2026",
        "channel": {
          "id": "UCfAajplgxRmwk38GYf9f_xA",
          "url": "https://www.youtube.com/@americantravelarchives",
          "handle": "americantravelarchives",
          "title": "American Travel Archives"
        },
        "keywords": [],
        "durationMs": 21000,
        "durationText": "00:00:21"
      },
      {
        "id": "Bk8NC3PvSvk",
        "url": "https://www.youtube.com/watch?v=Bk8NC3PvSvk",
        "title": "#love #baby",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/Bk8NC3PvSvk/maxresdefault.jpg",
        "viewCount": 19125796,
        "viewCountText": "19,125,796",
        "likeCount": 241613,
        "likeCountText": "241613",
        "commentCount": 1400,
        "commentCountText": "1.4K",
        "publishedAt": "2026-05-04T05:00:30-07:00",
        "publishedDateText": "May 4, 2026",
        "channel": {
          "id": "UCGkeED-1X19zJAz0ddXytLg",
          "url": "https://www.youtube.com/@donenskk",
          "handle": "donenskk",
          "title": "donenskk"
        },
        "keywords": [],
        "durationMs": 59000,
        "durationText": "00:00:59"
      },
      {
        "id": "U6mIjhN8GQo",
        "url": "https://www.youtube.com/watch?v=U6mIjhN8GQo",
        "title": "Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg",
        "viewCount": 18576665,
        "viewCountText": "18,576,665",
        "likeCount": 647486,
        "likeCountText": "647486",
        "commentCount": 1500,
        "commentCountText": "1.5K",
        "publishedAt": "2026-04-09T01:47:21-07:00",
        "publishedDateText": "Apr 9, 2026",
        "channel": {
          "id": "UCdQzLnPnnnqDbgJIwx_M1Sw",
          "url": "https://www.youtube.com/@adnanvlog-p8b",
          "handle": "adnanvlog-p8b",
          "title": "Adnan vlog"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "3_8Dd75mWHM",
        "url": "https://www.youtube.com/watch?v=3_8Dd75mWHM",
        "title": "Under Wool #sheep #shearing #wool",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/3_8Dd75mWHM/maxresdefault.jpg",
        "viewCount": 18989068,
        "viewCountText": "18,989,068",
        "likeCount": 406416,
        "likeCountText": "406416",
        "commentCount": 1500,
        "commentCountText": "1.5K",
        "publishedAt": "2026-05-08T03:46:48-07:00",
        "publishedDateText": "May 8, 2026",
        "channel": {
          "id": "UCTaoFdNdSSgyd1qYwF9z67g",
          "url": "https://www.youtube.com/@Snugbarn",
          "handle": "Snugbarn",
          "title": "Snugbarn"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "8K7kUZrVws8",
        "url": "https://www.youtube.com/watch?v=8K7kUZrVws8",
        "title": "From Backyard Ruin to Brand New Pool Build",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/8K7kUZrVws8/maxresdefault.jpg",
        "viewCount": 6554169,
        "viewCountText": "6,554,169",
        "likeCount": 124829,
        "likeCountText": "124829",
        "commentCount": 182,
        "commentCountText": "182",
        "publishedAt": "2026-05-08T02:29:36-07:00",
        "publishedDateText": "May 8, 2026",
        "channel": {
          "id": "UCZUKsU1Tww6rdX-3TVHrEew",
          "url": "https://www.youtube.com/@BadrRenton",
          "handle": "BadrRenton",
          "title": "Badr Renton"
        },
        "keywords": [],
        "durationMs": 62000,
        "durationText": "00:01:02"
      },
      {
        "id": "_xVSKcdvbSc",
        "url": "https://www.youtube.com/watch?v=_xVSKcdvbSc",
        "title": "Last One Shocked Everyone 😲",
        "description": "Others vs This one, Others vs Last One, Skull Emoji Edit, Skull Edit, Sigma Edit, Troll Face Edits,Troll Face,\n\n\nRelated:-\nWait For Last\nWait For Moment \nMoment Before Cooked \nMoment Before Disaster, \nTroll Face, \nTroll Face Edit,\nTroll,\nMoments Before Disaster,\n\n\n#trollface \n\n\nTags:-\n#unitedstates#unitedkingdom#australia #switzerland#norway#canada#germany #newzealand#denmark#ireland#singapore#netherlands#spain#france#japan  #geography#history#worldwar2#geography#maps#freepalestine#israel#nowary#usa#russia#uk#canada #geography#edit#maps#safevid#ottoman#umayyad#mughal#date#ussr#siwil#china#billgates#romania#japan#sealand#ohio#southkorea#ukraine#ireland#argentina#brazil#saudiarabia#turkey#greece#russia#algeria#indoneisa#usa#uk#norway#denmark#germany#france#continent#army#italy#world#korea#china#afghanistan#syria#jordan#eygpt#canada#niger#army#megustastu#albania#bulgaria#azerbaijan#vietnam#laos#cambodia#angola#poland#tazmania#angola#elsalvador#trollface#edit#countries#leaders#sigma#trending#northkorea#uzbekistan#gana#nato#oman#iraq#usa##conflict#meme#geographyer#ottoman#countryballs#syria#bulgaria#romania#israel#greece#shortsvideo#viralvideo#tiktokvirals#mongolia#japan#hungary#czechia#edits#ukraine#australia#summer#finland#morocco#armenia#israel#palestine#malaysia#iran#ıraq#mongolia#new#keşfet#türkiye#turkey#viralshorts#ww2#ww1#mapping#country#allied#real#middleeast#world#palestine#centralpowers#future#nowar#nazigermany#ussr#reels#shorts#meme#earth#china#japanese#italy#europe#asia#australia#fun#geography#youtube#trend#new#cuba#mexico#philipinnes#cambodia#south#north#austria#hungary#sweet#azerbaijan#edit#music#gigachad#true#animals#naberyoutube#flag#backgraund#commander#army#soldier#now#than#past#helpme#makethe#japanese#hirohito#trending#peace",
        "thumbnailUrl": "https://img.youtube.com/vi/_xVSKcdvbSc/maxresdefault.jpg",
        "viewCount": 31452439,
        "viewCountText": "31,452,439",
        "likeCount": 588403,
        "likeCountText": "588403",
        "commentCount": 2900,
        "commentCountText": "2.9K",
        "publishedAt": "2026-05-10T04:37:20-07:00",
        "publishedDateText": "May 10, 2026",
        "channel": {
          "id": "UCmBzW2_lWUDDHanmZxx3Hpg",
          "url": "https://www.youtube.com/@Troll.Boss1",
          "handle": "Troll.Boss1",
          "title": "Troll Boss"
        },
        "keywords": [],
        "durationMs": 59000,
        "durationText": "00:00:59"
      },
      {
        "id": "9SMRtWkmTKE",
        "url": "https://www.youtube.com/watch?v=9SMRtWkmTKE",
        "title": "Cat being idiots part 132: Cat teases owner 🤣 #funnycat #funnypet #cutecat #cat #pets #shorts",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/9SMRtWkmTKE/maxresdefault.jpg",
        "viewCount": 187373,
        "viewCountText": "187,373",
        "likeCount": 3710,
        "likeCountText": "3710",
        "commentCount": 18,
        "commentCountText": "18",
        "publishedAt": "2026-05-18T03:51:54-07:00",
        "publishedDateText": "May 18, 2026",
        "channel": {
          "id": "UCL-kXxSnnadCdBVdlQqSWTw",
          "url": "https://www.youtube.com/@RankingCatz",
          "handle": "RankingCatz",
          "title": "Funny Cat"
        },
        "keywords": [],
        "durationMs": 26000,
        "durationText": "00:00:26"
      },
      {
        "id": "jCfu2N4a4BY",
        "url": "https://www.youtube.com/watch?v=jCfu2N4a4BY",
        "title": "Georgina's Real Side ❤️🔥",
        "description": "Georgina Rodríguez and the kids were cycling on a road in Riyadh, Georgina told the kids to go slowly or else walk while holding the cycle, when Mateo’s helmet was loose she said “I’ll tighten your helmet in a sec,” showing her caring side, then Georgina said “we’re going to go feed the kittens” and told the kids to grab the cat food can, later she said “oh, look, this cat is so funny” and Georgina with her kids started feeding the cats Georgina’s Golden Heart\n#football #shorts #cristianoronaldo #ronaldo #georginarodriguez #georgina #respect #imotional #cats  #ronaldofamily #familymoments #viral #fyp #viralvideo",
        "thumbnailUrl": "https://img.youtube.com/vi/jCfu2N4a4BY/maxresdefault.jpg",
        "viewCount": 34021517,
        "viewCountText": "34,021,517",
        "likeCount": 525268,
        "likeCountText": "525268",
        "commentCount": 4700,
        "commentCountText": "4.7K",
        "publishedAt": "2026-05-01T09:03:05-07:00",
        "publishedDateText": "May 1, 2026",
        "channel": {
          "id": "UCh7V_VQ8uwgPQNvV44mmUkQ",
          "url": "https://www.youtube.com/@ronoxaep",
          "handle": "ronoxaep",
          "title": "Ronox Aep"
        },
        "keywords": [],
        "durationMs": 31000,
        "durationText": "00:00:31"
      },
      {
        "id": "7Xto-pwgCx4",
        "url": "https://www.youtube.com/watch?v=7Xto-pwgCx4",
        "title": "Phillies land All-Star closer Jhoan Duran ahead of MLB trade deadline 👀🔥 #JhoanDuran",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/7Xto-pwgCx4/maxresdefault.jpg",
        "viewCount": 31341,
        "viewCountText": "31,341",
        "likeCount": 339,
        "likeCountText": "339",
        "commentCount": null,
        "commentCountText": null,
        "publishedAt": "2026-05-06T01:54:15-07:00",
        "publishedDateText": "May 6, 2026",
        "channel": {
          "id": "UCtZH6z_qrK64gSTiGnk5icw",
          "url": "https://www.youtube.com/@yikkkk-x7i",
          "handle": "yikkkk-x7i",
          "title": "yikkkk"
        },
        "keywords": [],
        "durationMs": 51000,
        "durationText": "00:00:51"
      },
      {
        "id": "LUnlgES_5J4",
        "url": "https://www.youtube.com/watch?v=LUnlgES_5J4",
        "title": "#aestheic",
        "description": "Originally priced around $1.5 million, the Mercedes CLR GTR is considered oneof the most exclusive a\nNo\n\nNo problem! \n\nThe Mercedes CLR GTR is a remarkable racing car celebrated for its\noutstanding performance and sleek design. Powered by a potent 6.0-liter V12\nengine, it delivers over 600 horsepower.\n🔧\n\nAcceleration from 0 to 100 km/h takes approximately 3.7 seconds, with a\nremarkable top speed surpassing 320 km/h. 🥇\n\nIncorporating advanced aerodynamic features and cutting-edge stability\ntechnologies, the CLR GTR ensures exceptional stability and control,\nparticularly during high-speed maneuvers.🌬\n\nOriginally priced around $1.5 million, the Mercedes CLR GTR is considered one\nof the most exclusive and prestigious racing cars ever produced. 💰\n\nIts limited production run of just five units adds to its rarity, making it highly\nsought after by racing enthusiasts and collectors worldwide. 🌍\n\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram\n#instagrambusinessgrowth #socialmediamarketingtips\n@ntp_ffi\n#instagramgrowthexpert #socialmediatips #socialmediaexpert #instagramgrowthtips #contentmarketing #instagramgrowth #onlinecoach #business #contenttips #makebetterreels #socialmediamarketing #socialmediagrowth #socialmediastrategy #instagramalgorithm #instagramtutorial #howtoinstagram #growninstagram\n#instagrambusinessgrowth #socialmediamarketingtips \nby Krishn by",
        "thumbnailUrl": "https://img.youtube.com/vi/LUnlgES_5J4/maxresdefault.jpg",
        "viewCount": 26760321,
        "viewCountText": "26,760,321",
        "likeCount": 167662,
        "likeCountText": "167662",
        "commentCount": 211,
        "commentCountText": "211",
        "publishedAt": "2026-05-09T08:59:00-07:00",
        "publishedDateText": "May 9, 2026",
        "channel": {
          "id": "UC7fgiQpYrkU2vyMvRqejENQ",
          "url": "https://www.youtube.com/@ZewerEditz",
          "handle": "ZewerEditz",
          "title": "Zewer Editz"
        },
        "keywords": [],
        "durationMs": 11000,
        "durationText": "00:00:11"
      },
      {
        "id": "WNt6kygwymc",
        "url": "https://www.youtube.com/watch?v=WNt6kygwymc",
        "title": "Throwing challenge no. 9! This one was such a struggle 😅",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/WNt6kygwymc/maxresdefault.jpg",
        "viewCount": 22348408,
        "viewCountText": "22,348,408",
        "likeCount": 427231,
        "likeCountText": "427231",
        "commentCount": 656,
        "commentCountText": "656",
        "publishedAt": "2026-04-06T15:41:31-07:00",
        "publishedDateText": "Apr 6, 2026",
        "channel": {
          "id": "UCbao9ceO35fTaft5C1jfVRw",
          "url": "https://www.youtube.com/@leisaleaf",
          "handle": "leisaleaf",
          "title": "Leisa Leaf"
        },
        "keywords": [],
        "durationMs": 87000,
        "durationText": "00:01:27"
      },
      {
        "id": "PlD70e9ydDA",
        "url": "https://www.youtube.com/watch?v=PlD70e9ydDA",
        "title": "#catmeme",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/PlD70e9ydDA/maxresdefault.jpg",
        "viewCount": 19225494,
        "viewCountText": "19,225,494",
        "likeCount": 217404,
        "likeCountText": "217404",
        "commentCount": 745,
        "commentCountText": "745",
        "publishedAt": "2026-04-24T12:33:14-07:00",
        "publishedDateText": "Apr 24, 2026",
        "channel": {
          "id": "UCYpzvbGKMmxBPE_KcniNiYw",
          "url": "https://www.youtube.com/@JohnsJournals",
          "handle": "JohnsJournals",
          "title": "John's Journals"
        },
        "keywords": [],
        "durationMs": 11000,
        "durationText": "00:00:11"
      },
      {
        "id": "H1xHqGEp48Y",
        "url": "https://www.youtube.com/watch?v=H1xHqGEp48Y",
        "title": "He Gets Paid $300 an Hour to Find What You Can't See",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/H1xHqGEp48Y/maxresdefault.jpg",
        "viewCount": 10394752,
        "viewCountText": "10,394,752",
        "likeCount": 279948,
        "likeCountText": "279948",
        "commentCount": 875,
        "commentCountText": "875",
        "publishedAt": "2026-05-07T12:48:02-07:00",
        "publishedDateText": "May 7, 2026",
        "channel": {
          "id": "UCGPRNbnHZwdMbkpJSEVy3pw",
          "url": "https://www.youtube.com/@Thedailycuri",
          "handle": "Thedailycuri",
          "title": "TheDailyCurio"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "hX8yav9lCXo",
        "url": "https://www.youtube.com/watch?v=hX8yav9lCXo",
        "title": "Chọi đất tuổi thơ | Dirt ball game #shortvideo",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/hX8yav9lCXo/maxresdefault.jpg",
        "viewCount": 47780956,
        "viewCountText": "47,780,956",
        "likeCount": 194955,
        "likeCountText": "194955",
        "commentCount": 78,
        "commentCountText": "78",
        "publishedAt": "2026-04-15T05:40:35-07:00",
        "publishedDateText": "Apr 15, 2026",
        "channel": {
          "id": "UCckLDdqscHMHm-jvZLJG7aw",
          "url": "https://www.youtube.com/@romoi4357",
          "handle": "romoi4357",
          "title": "ROM"
        },
        "keywords": [],
        "durationMs": 21000,
        "durationText": "00:00:21"
      },
      {
        "id": "k5kiUznCXFM",
        "url": "https://www.youtube.com/watch?v=k5kiUznCXFM",
        "title": "Kai Cenat Turned Into MJ After This 💀😂 #kaicenat #shorts",
        "description": "Kai Cenat vs toxic South London girls got so crazy… bro turned into MJ 😭🔥💀 #kaicenat #sidemen #ksi #shorts",
        "thumbnailUrl": "https://img.youtube.com/vi/k5kiUznCXFM/maxresdefault.jpg",
        "viewCount": 982231,
        "viewCountText": "982,231",
        "likeCount": 9102,
        "likeCountText": "9102",
        "commentCount": 53,
        "commentCountText": "53",
        "publishedAt": "2026-05-17T06:46:40-07:00",
        "publishedDateText": "May 17, 2026",
        "channel": {
          "id": "UCDBAaYApCXjN4ZxaJHVkCwA",
          "url": "https://www.youtube.com/@OnShortzz",
          "handle": "OnShortzz",
          "title": "OnShortz"
        },
        "keywords": [],
        "durationMs": 28000,
        "durationText": "00:00:28"
      },
      {
        "id": "GXkOyC3loo8",
        "url": "https://www.youtube.com/watch?v=GXkOyC3loo8",
        "title": "Sorting Colours Challenge || Village Avengers",
        "description": "Sorting Colours Challenge || Village Avengers\nHello Everyone welcome to Village Avengers. We are here to entertain you through interesting game challenges with Indian Village people. We are inspired by Bhagawan Sri Sathya Sai Baba's sayings i.e. \"Helping hands are better than praying Lips\" We follow that. \nTHANKYOU for watching our videos, Hope you enjoy our challenges\n\nDisclaimer: \nPlease do not upload our videos to Facebook or anywhere else. We will take down those videos and give a strike and we will not remove the strike, so please be careful. Or I will strike your channel without any notice. We respect each other's work. Please stay away from re-uploading our videos.\n\n-Village Avengers",
        "thumbnailUrl": "https://img.youtube.com/vi/GXkOyC3loo8/maxresdefault.jpg",
        "viewCount": 1554872,
        "viewCountText": "1,554,872",
        "likeCount": 10169,
        "likeCountText": "10169",
        "commentCount": 16,
        "commentCountText": "16",
        "publishedAt": "2026-05-12T06:24:12-07:00",
        "publishedDateText": "May 12, 2026",
        "channel": {
          "id": "UCjrqYkdrvf6MHFOzZQf6HwA",
          "url": "https://www.youtube.com/@TheVillageAvengers",
          "handle": "TheVillageAvengers",
          "title": "Village Avengers"
        },
        "keywords": [
          "The Village Avengers",
          "Village Avengers",
          "Avengers",
          "Avengers Village",
          "Funny Games",
          "ladies games",
          "village ladies games",
          "women games",
          "village games",
          "funny village games",
          "indian village games"
        ],
        "durationMs": 141000,
        "durationText": "00:02:21"
      },
      {
        "id": "UvANVI4bp2o",
        "url": "https://www.youtube.com/watch?v=UvANVI4bp2o",
        "title": "Paying strangers to cook for me in New York ft. ‪@FellowProducts‬  #cookforme #cooking #newyork",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/UvANVI4bp2o/maxresdefault.jpg",
        "viewCount": 7399733,
        "viewCountText": "7,399,733",
        "likeCount": 205944,
        "likeCountText": "205944",
        "commentCount": 3800,
        "commentCountText": "3.8K",
        "publishedAt": "2026-05-15T09:05:00-07:00",
        "publishedDateText": "May 15, 2026",
        "channel": {
          "id": "UCPcfjtEeauin6HIBzDqL5FQ",
          "url": "https://www.youtube.com/@samueldonner1",
          "handle": "samueldonner1",
          "title": "Samuel Donner"
        },
        "keywords": [],
        "durationMs": 180000,
        "durationText": "00:03:00"
      },
      {
        "id": "6O6J8Awgf9g",
        "url": "https://www.youtube.com/watch?v=6O6J8Awgf9g",
        "title": "New washing technic😂#shorts #shortsfeed #greenscreen #funny #viral #trending",
        "description": "New washing technic😂\n#shorts \n#shortsfeed \n#greenscreen \n#funny \n#viral \n#trending",
        "thumbnailUrl": "https://img.youtube.com/vi/6O6J8Awgf9g/maxresdefault.jpg",
        "viewCount": 46986083,
        "viewCountText": "46,986,083",
        "likeCount": 143943,
        "likeCountText": "143943",
        "commentCount": 133,
        "commentCountText": "133",
        "publishedAt": "2026-03-22T19:46:30-07:00",
        "publishedDateText": "Mar 22, 2026",
        "channel": {
          "id": "UCF1nsIeDCfzdvsfj82nxFIA",
          "url": "https://www.youtube.com/@DeepakSP1206",
          "handle": "DeepakSP1206",
          "title": "DeepakSP Varma"
        },
        "keywords": [],
        "durationMs": 23000,
        "durationText": "00:00:23"
      },
      {
        "id": "U6mIjhN8GQo",
        "url": "https://www.youtube.com/watch?v=U6mIjhN8GQo",
        "title": "Instant Karma for Ignoring Traffic Rules ！😂😂#InstantKarma#PoliceCaught#TrafficViolation#baddrivers",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/U6mIjhN8GQo/maxresdefault.jpg",
        "viewCount": 18576665,
        "viewCountText": "18,576,665",
        "likeCount": 647486,
        "likeCountText": "647486",
        "commentCount": 1500,
        "commentCountText": "1.5K",
        "publishedAt": "2026-04-09T01:47:21-07:00",
        "publishedDateText": "Apr 9, 2026",
        "channel": {
          "id": "UCdQzLnPnnnqDbgJIwx_M1Sw",
          "url": "https://www.youtube.com/@adnanvlog-p8b",
          "handle": "adnanvlog-p8b",
          "title": "Adnan vlog"
        },
        "keywords": [],
        "durationMs": 60000,
        "durationText": "00:01:00"
      },
      {
        "id": "WNt6kygwymc",
        "url": "https://www.youtube.com/watch?v=WNt6kygwymc",
        "title": "Throwing challenge no. 9! This one was such a struggle 😅",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/WNt6kygwymc/maxresdefault.jpg",
        "viewCount": 22348408,
        "viewCountText": "22,348,408",
        "likeCount": 427231,
        "likeCountText": "427231",
        "commentCount": 656,
        "commentCountText": "656",
        "publishedAt": "2026-04-06T15:41:31-07:00",
        "publishedDateText": "Apr 6, 2026",
        "channel": {
          "id": "UCbao9ceO35fTaft5C1jfVRw",
          "url": "https://www.youtube.com/@leisaleaf",
          "handle": "leisaleaf",
          "title": "Leisa Leaf"
        },
        "keywords": [],
        "durationMs": 87000,
        "durationText": "00:01:27"
      },
      {
        "id": "tyIOO2GWfkg",
        "url": "https://www.youtube.com/watch?v=tyIOO2GWfkg",
        "title": "Nobody Saw That coming 😂 | Now you see me 3 (2025) | Heavenly JumpStyle (Slowed)",
        "description": "Nobody Saw That coming 😂 | Now you see me 3 (2025) | Heavenly JumpStyle (Slowed)\n\n#nowyouseeme3 #edits #movie",
        "thumbnailUrl": "https://img.youtube.com/vi/tyIOO2GWfkg/maxresdefault.jpg",
        "viewCount": 45300,
        "viewCountText": "45,300",
        "likeCount": 852,
        "likeCountText": "852",
        "commentCount": 9,
        "commentCountText": "9",
        "publishedAt": "2026-05-18T11:14:37-07:00",
        "publishedDateText": "May 18, 2026",
        "channel": {
          "id": "UCgmA9uKsOUSifAszc4z-UgQ",
          "url": "https://www.youtube.com/@realMibby",
          "handle": "realMibby",
          "title": "Mibby"
        },
        "keywords": [
          "now you see me",
          "movie edit",
          "edit",
          "movie",
          "edits",
          "now you see me 3"
        ],
        "durationMs": 46000,
        "durationText": "00:00:46"
      },
      {
        "id": "jy6HDkcgdq8",
        "url": "https://www.youtube.com/watch?v=jy6HDkcgdq8",
        "title": "Handcrafted Floral Engagement Ring in 18K Gold | Full Making Process",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/jy6HDkcgdq8/maxresdefault.jpg",
        "viewCount": 16095339,
        "viewCountText": "16,095,339",
        "likeCount": 341521,
        "likeCountText": "341521",
        "commentCount": 1500,
        "commentCountText": "1.5K",
        "publishedAt": "2026-05-01T01:24:09-07:00",
        "publishedDateText": "May 1, 2026",
        "channel": {
          "id": "UC1dy_vNJ3pxLlNyfULI97RQ",
          "url": "https://www.youtube.com/@NextLevelSkills-m1g2d",
          "handle": "NextLevelSkills-m1g2d",
          "title": "NextLevelSkills"
        },
        "keywords": [],
        "durationMs": 179000,
        "durationText": "00:02:59"
      },
      {
        "id": "PlD70e9ydDA",
        "url": "https://www.youtube.com/watch?v=PlD70e9ydDA",
        "title": "#catmeme",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/PlD70e9ydDA/maxresdefault.jpg",
        "viewCount": 19225494,
        "viewCountText": "19,225,494",
        "likeCount": 217404,
        "likeCountText": "217404",
        "commentCount": 745,
        "commentCountText": "745",
        "publishedAt": "2026-04-24T12:33:14-07:00",
        "publishedDateText": "Apr 24, 2026",
        "channel": {
          "id": "UCYpzvbGKMmxBPE_KcniNiYw",
          "url": "https://www.youtube.com/@JohnsJournals",
          "handle": "JohnsJournals",
          "title": "John's Journals"
        },
        "keywords": [],
        "durationMs": 11000,
        "durationText": "00:00:11"
      },
      {
        "id": "keuAAAqgcAs",
        "url": "https://www.youtube.com/watch?v=keuAAAqgcAs",
        "title": "It was MUCH bigger than we thought 🫣⚒️💎",
        "description": "In our last video we pulled an epic Adularia Phantom Quartz cluster that was locking this huge piece in the pocket and once we pulled it out, the big one was ready to pop! It was much bigger than we thought, stunning clear Quartz points on a bed of pure white Adularia crystals which is a type of Moonstone in the Feldspar family. This cluster was so much fun to dig and it was so satisfying to see the clay come off while we washed it. \n\n📍Ginjo Pocket, Hamilton Hill Mine, Arkansas, USA ‪@AvantMining‬  ⚒️\n \n#shorts #mining #crystals #quartz #discovery",
        "thumbnailUrl": "https://img.youtube.com/vi/keuAAAqgcAs/maxresdefault.jpg",
        "viewCount": 119785401,
        "viewCountText": "119,785,401",
        "likeCount": 1299994,
        "likeCountText": "1299994",
        "commentCount": 8600,
        "commentCountText": "8.6K",
        "publishedAt": "2026-03-31T08:39:25-07:00",
        "publishedDateText": "Mar 31, 2026",
        "channel": {
          "id": "UC3_GsBiAvCzRYIcS_qmAE2Q",
          "url": "https://www.youtube.com/@RocksfortheSpirit",
          "handle": "RocksfortheSpirit",
          "title": "Rocks for the Spirit"
        },
        "keywords": [
          "Crystals",
          "Minerals",
          "Gemstones",
          "Rare",
          "Interesting",
          "Rocks",
          "Rocks for the Spirit"
        ],
        "durationMs": 53000,
        "durationText": "00:00:53"
      },
      {
        "id": "F0wK4izLJ3M",
        "url": "https://www.youtube.com/watch?v=F0wK4izLJ3M",
        "title": "Gnochis 🍝 🇮🇹",
        "description": null,
        "thumbnailUrl": "https://img.youtube.com/vi/F0wK4izLJ3M/maxresdefault.jpg",
        "viewCount": 140522943,
        "viewCountText": "140,522,943",
        "likeCount": 1920141,
        "likeCountText": "1920141",
        "commentCount": 13000,
        "commentCountText": "13K",
        "publishedAt": "2026-01-24T11:32:18-08:00",
        "publishedDateText": "Jan 24, 2026",
        "channel": {
          "id": "UCKNskoTLxHY7EYjMNlYa3kQ",
          "url": "https://www.youtube.com/@surthycooks",
          "handle": "surthycooks",
          "title": "surthany hejeij"
        },
        "keywords": [],
        "durationMs": 61000,
        "durationText": "00:01:01"
      },
      {
        "id": "lShcK2El6O8",
        "url": "https://www.youtube.com/watch?v=lShcK2El6O8",
        "title": "Nasa VS My Telescope 🔭🤯",
        "description": "Nasa's images VS My Telescope 🔭 \nCompared nasa images with my clips!\n\nCompared images of:\n\nFull Moon \nJupiter planet \nSaturn Planet \nOrion Nebula \n\n‪@Astronightsky-official‬ \n\nWho won? 🏆",
        "thumbnailUrl": "https://img.youtube.com/vi/lShcK2El6O8/maxresdefault.jpg",
        "viewCount": 14688640,
        "viewCountText": "14,688,640",
        "likeCount": 208642,
        "likeCountText": "208642",
        "commentCount": 1100,
        "commentCountText": "1.1K",
        "publishedAt": "2026-05-09T06:28:35-07:00",
        "publishedDateText": "May 9, 2026",
        "channel": {
          "id": "UCQeqfohH7mOrzbkhIIBH-pw",
          "url": "https://youtube.com/@Astronightsky",
          "handle": "Astronightsky",
          "title": "Astro Nightsky"
        },
        "keywords": [
          "Telescope 🔭",
          "Astrophotography",
          "Space 🌌🚀",
          "Nasa",
          "Nasa VS My 60mm Telescope"
        ],
        "durationMs": 25000,
        "durationText": "00:00:25"
      }
    ],
    "totalResults": 48
  },
  "meta": {
    "requestId": "req_01youtube_shorts_trending_example",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Machine-readable error codes

When an error JSON body is returned, it may include one of these `error.code` values (derived from the OpenAPI schemas for this operation; additional codes may exist at runtime):

- `unauthorized`

## Error handling & retries

Interpret HTTP status codes using the descriptions below. Do not assume a JSON body unless the OpenAPI schema defines one for that status.

- **401**: Missing or invalid API key **Retry:** Fix the API key first; retrying without changes will not help.
- **402**: Insufficient credits **Retry:** Do not retry without resolving billing/credits (retrying the same request will not help).
- **500**: Unexpected or billing error
- **502**: Lookup could not be completed from the response (unexpected or invalid data). **Retry:** May be transient; a few retries with backoff are reasonable.
- **503**: Service temporarily unavailable; safe to retry with backoff. **Retry:** Usually safe to retry with exponential backoff and jitter.

### Suggested client defaults

- Send the API key using the `x-api-key` header on every request.
- On `503` (and sometimes `502`), retry with backoff; cap retries and surface a clear error to the user.
- On `402`, surface an actionable billing message rather than blind retries.

## Examples

### TypeScript SDK

```typescript
import { SocialFetchClient } from "@socialfetch/sdk";

const client = new SocialFetchClient({
  apiKey: process.env.SOCIALFETCH_API_KEY!,
});

const result = await client.youtube.getTrendingShorts();

if (!result.ok) {
  console.error(result.error);
} else {
  console.log(result.value.data);
}
```

### Node.js

```javascript
const response = await fetch(
  "https://api.socialfetch.dev/v1/youtube/shorts/trending",
  {
    headers: {
      "x-api-key": "YOUR_API_KEY",
    }
  }
);

const data = await response.json();
console.log(data);
```

### cURL

```bash
curl "https://api.socialfetch.dev/v1/youtube/shorts/trending" \
  -H "x-api-key: YOUR_API_KEY"
```

### Python

```python
import requests

response = requests.get(
    "https://api.socialfetch.dev/v1/youtube/shorts/trending",
    headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()
print(data)
```