Skip to main content
POST
/
v1
/
auth
/
api-keys
Create API key
curl --request POST \
  --url https://api.clipping.cc/v1/auth/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "key": {
    "key_id": "<string>",
    "name": "<string>",
    "key": "<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: Authorization: Bearer ck_live_…

Body

application/json
name
string

Optional label.

Response

Key created.

key
object