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

Body

application/json
name
string
required
description
string
visibility
enum<string>
Available options:
private,
public
language
enum<string>
Available options:
pt,
en

Response

Collection created.

collection
object