Skip to main content
GET
/
v1
/
scrape
/
youtube
/
channel
/
shorts
/
simple
Channel Shorts (we handle the pagination)
curl --request GET \
  --url https://api.sociavault.com/v1/scrape/youtube/channel/shorts/simple \
  --header 'X-API-Key: <api-key>'
[
  {
    "type": "short",
    "id": "01D3CgMZ29I",
    "url": "https://www.youtube.com/watch?v=01D3CgMZ29I",
    "title": "WHAT A MATCH",
    "thumbnail": "https://i.ytimg.com/vi/01D3CgMZ29I/oardefault.jpg?sqp=-oaymwEoCJUDENAFSFqQAgHyq4qpAxcIARUAAIhC2AEB4gEKCBgQAhgGOAFAAQ==&rs=AOn4CLBTI26rFmtMoUSzLVbr1Izv5pxfkQ",
    "viewCountText": "13K",
    "viewCountInt": 13000
  }
]
💳 1 credit per request

Authorizations

X-API-Key
string
header
required

API key for authentication. Format: sk_live_xxxxxxxxxxxxx

Get your API key from the Dashboard.

Query Parameters

handle
string

Can pass channelId or handle

Example:

"ThePatMcAfeeShow"

channelId
string

Can pass channelId or handle

Example:

"UC-9-kyTW8ZkZNDHQJ6FgpwQ"

amount
integer
required

The amount of shorts to return.

Example:

20

Response

Successful response

type
string
required
Example:

"short"

id
string
required
Example:

"01D3CgMZ29I"

url
string
required
Example:

"https://www.youtube.com/watch?v=01D3CgMZ29I"

title
string
required
Example:

"WHAT A MATCH"

thumbnail
string
required
Example:

"https://i.ytimg.com/vi/01D3CgMZ29I/oardefault.jpg?sqp=-oaymwEoCJUDENAFSFqQAgHyq4qpAxcIARUAAIhC2AEB4gEKCBgQAhgGOAFAAQ==&rs=AOn4CLBTI26rFmtMoUSzLVbr1Izv5pxfkQ"

viewCountText
string
required
Example:

"13K"

viewCountInt
integer
required
Example:

13000