Skip to main content
PUT
/
v1
/
links
/
{short_url}
cURL
curl -X PUT "https://api.klipl.ink/v1/links/klipl.ink/your-link" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "destination_url": "https://www.example.com/new-destination",
    "title": "Updated KlipLink API Guide"
  }'
{
  "success": true,
  "short_url": "https://klipl.ink/your-link",
  "destination_url": "https://www.example.com/new-destination",
  "clicks": 255,
  "created_at": "2025-11-06T14:30:00.000Z",
  "title": "Updated KlipLink API Guide"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

short_url
string
required

The short URL identifier of the link to update (e.g. klipl.ink/your-link).

Body

application/json
destination_url
string

The new destination URL for the short link.

Example:

"https://www.example.com/new-destination"

title
string

The new title for the short link.

Example:

"Updated KlipLink API Guide"

Response

Link updated successfully

success
boolean
Example:

true

short_url
string
Example:

"https://klipl.ink/your-link"

destination_url
string
Example:

"https://example.com/"

clicks
integer
Example:

255

created_at
string<date-time>
Example:

"2025-11-06T14:30:00.000Z"

title
string
Example:

"Example Link"