Skip to main content
GET
/
items
/
{item_id}
Item detail
curl --request GET \
  --url https://api.clipping.cc/items/{item_id} \
  --header 'Authorization: Bearer <token>'
{
  "item": {
    "item_id": "<string>",
    "type": "<string>",
    "name": "<string>"
  },
  "collections": [
    {
      "collection_id": "<string>",
      "name": "<string>"
    }
  ],
  "channel": {}
}

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

Session JWT from /auth/login or /auth/signup: Authorization: Bearer

Path Parameters

item_id
string
required

Response

Item with collections and channel.

item
object
collections
object[]
channel
object