Skip to main content
GET
/
v1
/
links
cURL
curl -X GET "https://api.klipl.ink/v1/links" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "links": [
    {
      "short_url": "https://klipl.ink/your-link",
      "destination_url": "https://example.com/",
      "clicks": 255,
      "created_at": "2025-11-06T14:30:00.000Z",
      "title": "Example Link"
    },
    {
      "short_url": "https://link.your-domain.com/custom-link",
      "destination_url": "https://example.com/page",
      "clicks": 128,
      "created_at": "2025-11-05T10:15:00.000Z",
      "title": "Custom Domain Link"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

List of links

success
boolean
Example:

true