Skip to main content
GET
/
videos
Get videos details
curl --request GET \
  --url https://api.poix.io/videos \
  --header 'Authorization: Bearer <token>'
{
  "totalResults": 123,
  "data": [
    {
      "id": "<string>",
      "publishedAt": "<string>",
      "channelId": "<string>",
      "title": "<string>",
      "description": "<string>",
      "thumbnails": {
        "default": {
          "url": "<string>",
          "width": 123,
          "height": 123
        },
        "medium": {
          "url": "<string>",
          "width": 123,
          "height": 123
        },
        "high": {
          "url": "<string>",
          "width": 123,
          "height": 123
        }
      },
      "channelTitle": "<string>",
      "tags": [
        "<string>"
      ],
      "categoryId": "<string>",
      "defaultLanguage": "<string>",
      "defaultAudioLanguage": "<string>",
      "viewCount": "<string>",
      "likeCount": "<string>",
      "commentCount": "<string>",
      "topicCategories": [
        "<string>"
      ],
      "uploadStatus": "<string>",
      "privacyStatus": "<string>",
      "license": "<string>",
      "embeddable": true,
      "publicStatsViewable": true,
      "madeForKids": true,
      "hasPaidProductPlacement": true,
      "localizations": {},
      "categoryTitle": "<string>",
      "duration": "<string>",
      "parsedDuration": 123,
      "captionsUrl": "<string>",
      "videoFileUrl": "<string>",
      "audioFileUrl": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ids
string
required

An array of video IDs to retrieve data for.

hl
enum<string>

The language to retrieve localized data in.

Available options:
af,
am,
ar,
as,
az,
be,
bg,
bn,
bs,
ca,
cs,
da,
de,
el,
en-GB,
en-IN,
en,
es,
es-419,
es-US,
et,
eu,
fa,
fi,
fil,
fr-CA,
fr,
gl,
gu,
hi,
hr,
hu,
hy,
id,
is,
it,
iw,
ja,
ka,
kk,
km,
kn,
ko,
ky,
lo,
lt,
lv,
mk,
ml,
mn,
mr,
ms,
my,
no,
ne,
nl,
or,
pa,
pl,
pt,
pt-PT,
ro,
ru,
si,
sk,
sl,
sq,
sr-Latn,
sr,
sv,
sw,
ta,
te,
th,
tr,
uk,
ur,
uz,
vi,
zh-CN,
zh-HK,
zh-TW,
zu
fields
string

An array of fields to include in the response. If not provided, all fields will be returned.

Response

Successful response

totalResults
number
required

Total number of video details returned.

data
object[]
required

Array of video detail objects.