Skip to main content
GET
/
v1
/
domains
cURL
curl -X GET "https://api.klipl.ink/v1/domains" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "domains": [
    {
      "domain": "go.example.com",
      "subdomain": "go",
      "root_domain": "example.com",
      "created_at": "2025-06-14T17:15:50.000Z"
    },
    {
      "domain": "link.your-website.com",
      "subdomain": "link",
      "root_domain": "your-website.com",
      "created_at": "2025-05-10T09:30:00.000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

List of domains

success
boolean
Example:

true

domains
object[]