Skip to main content
GET
/
v1
/
videos
List the user's videos
curl --request GET \
  --url https://api.clipping.cc/v1/videos \
  --header 'Authorization: Bearer <token>'
{
  "videos": [
    {
      "video_id": "<string>",
      "title": "<string>",
      "mirrored_thumbnail_url": "<string>",
      "viewer_item_id": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.clipping.cc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in the header: Authorization: Bearer ck_live_…

Query Parameters

item_id
string

Filter by channel/item. Without it, lists all the user's videos.

limit
integer
default:50
Required range: x <= 200
offset
integer
default:0

Response

Videos.

videos
object[]