Skip to main content
POST
/
v1
/
collections
/
{collection_id}
/
items
Add a source to the collection
curl --request POST \
  --url https://api.clipping.cc/v1/collections/{collection_id}/items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source": "<string>",
  "name": "<string>"
}
'
{
  "collection": {
    "collection_id": "<string>",
    "name": "<string>"
  },
  "item": {
    "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_…

Path Parameters

collection_id
string
required

Body

application/json
source
string
required

Source URL or handle (e.g. @channel, a YouTube link).

name
string

Optional name.

Response

Item added.

collection
object
item
object