Skip to main content
GET
/
v1
/
items
List the user's items
curl --request GET \
  --url https://api.clipping.cc/v1/items \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "item_id": "<string>",
      "type": "<string>",
      "name": "<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

type
enum<string>
Available options:
youtube_channel,
youtube_video,
twitter,
rss
limit
integer
default:50
Required range: x <= 200
offset
integer
default:0

Response

The user's items.

items
object[]