Collect public Shorts from YouTube channel URLs, returning normalized titles, channel context, thumbnails, duration, publication details, and visible engagement.

YouTube Shorts API

Shorts
Channel discovery
Public metrics
0.5 credits / result
Ready
Ready

Enter parameters and send a request. The task status and normalized results will appear here.

README

YouTube Shorts

YouTube Shorts are short-form videos with titles, channel context, thumbnails, duration, publication details, source classification, and visible engagement. These content and performance signals support format research, creator comparison, trend monitoring, and campaign analysis.

Features

  • Multi-channel Shorts collectionCollect public Shorts from multiple channel URLs in one request.
  • Per-channel result limitsSet a separate results_limit for each input channel, with a default of 100.
  • Normalized Short metadataReturn normalized Short identity, content metadata, thumbnails, duration, publication date, and publishing channel.
  • Point-in-time engagement metricsInclude public view, like, and comment counts with collected_at for later comparison.
  • Platform-native Shorts scopeUse YouTube's Shorts classification instead of defining short-form content only by duration or orientation.

Parameters

ParametersRequiredDescription
urlsRequiredPublic YouTube channel URLs, separated by commas or new lines.
results_limitOptionalMaximum number of eligible records to request for each input URL. Must be a positive integer and defaults to 100.

How to Use

Create a clean short-form stream for a known channel set. The task separates platform classification from any custom format rules you may apply later.

  1. Prepare public channel URLs; individual Shorts URLs belong in Videos when you need direct lookup.
  2. POST urls and results_limit to /v1/youtube/shorts, accounting for the limit on every channel.
  3. Poll /v1/tasks/{task_id} until the channel inventory finishes.
  4. Index results by Short ID, keep channel and collection context, and paginate while has_more is true.
curl -X POST "https://api.socq.ai/v1/youtube/shorts" \
  -H "Authorization: Bearer $SOCQ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"urls":["https://www.youtube.com/@NASA"],"results_limit":10}'

# Poll GET /v1/tasks/{task_id}
# Read GET /v1/tasks/{task_id}?limit=50

Best Use Cases

  • Short-form activity monitoring: Track public Shorts published by selected creators, brands, publishers, or competitors.
  • Shorts performance comparison: Compare publication frequency, duration, views, likes, and comments across selected channels.
  • Short-form content catalogs: Build a normalized collection of public Shorts for internal search, review, or reporting.
  • Topic and trend analysis: Use titles, descriptions, hashtags, channel data, and public metrics in classification or research workflows.

Pro Tips

  • Do not reclassify results using a universal duration threshold. YouTube's public format classification is the contract for this endpoint.
  • The limit is per channel and is a ceiling, not a guarantee. Some channels have few or no eligible public Shorts.
  • Use the returned ID for deduplication; the same item may appear through different public URL forms elsewhere in your system.
  • Keep collected_at with metrics because a Short's visible counters can move rapidly after publication.
  • This endpoint does not search by keyword. Start from Search for topic discovery, then route known Short URLs through Videos if needed.
  • Collect Channel Videos separately when you need a clean comparison between short-form and regular publishing.
  • Join Channels by channel ID for profile and audience fields instead of repeating mutable channel metadata on every item.

Use these APIs when you need a different type of public YouTube data.

  • YouTube Channel Videos APICollect regular public videos from channel URLs, excluding Shorts and live streams.
  • YouTube Comments APICollect public comments, authors, engagement, source videos, and conversation context.
  • YouTube Transcripts APIRetrieve available plain-text transcripts with optional language selection.
  • YouTube Channels APIRetrieve public channel identity, images, verification, and visible audience statistics.
  • YouTube Videos APIRetrieve metadata, thumbnails, duration, and engagement for known video or Short URLs.
  • YouTube Search APISearch public regular videos by keyword with supported metadata filters.

YouTube Shorts APIFAQ