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
| Parameters | Required | Description |
|---|---|---|
urls | Required | Public YouTube channel URLs, separated by commas or new lines. |
results_limit | Optional | Maximum 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.
- Prepare public channel URLs; individual Shorts URLs belong in Videos when you need direct lookup.
- POST urls and results_limit to /v1/youtube/shorts, accounting for the limit on every channel.
- Poll /v1/tasks/{task_id} until the channel inventory finishes.
- 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=50Best 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.
Related APIs
Use these APIs when you need a different type of public YouTube data.
- YouTube Channel Videos API — Collect regular public videos from channel URLs, excluding Shorts and live streams.
- YouTube Comments API — Collect public comments, authors, engagement, source videos, and conversation context.
- YouTube Transcripts API — Retrieve available plain-text transcripts with optional language selection.
- YouTube Channels API — Retrieve public channel identity, images, verification, and visible audience statistics.
- YouTube Videos API — Retrieve metadata, thumbnails, duration, and engagement for known video or Short URLs.
- YouTube Search API — Search public regular videos by keyword with supported metadata filters.
- YouTube Channel Live Videos API — Collect public broadcast records exposed on channel live surfaces, with source context and visible metrics.
- YouTube Comment Replies API — Continue a known YouTube comment thread from its reply token and return public replies, authors, engagement, and parent context.
- YouTube Community Posts API — Collect public Community-tab posts from channel URLs, including text, channel identity, timestamps, image references, and source context.
- YouTube Hashtag Search API — Find public videos from hashtag feeds with all-content or Shorts-only collection.
- YouTube Playlist Videos API — Collect video identity, channel context, thumbnails, duration, and playlist provenance from public playlist URLs or IDs.