GET/api/v6/urlshortener/domains

List available domains

Domains your account can publish links on, with the default first.

Scope and limits

Scope

API key with the urlshortener service enabled

Usage limit

30 requests per minute

Lists the domains your account can publish short links on: platform-wide domains plus your own, with the default one first.

Responses

200

Available domains.

{
  "success": true,
  "data": [
    { "domain": "go.acme.co", "isDefault": true, "verified": true, "global": false },
    { "domain": "hbl.li", "isDefault": false, "verified": true, "global": true }
  ],
  "meta": {
    "requestId": "8f0c0e2a4b1d4c8fae2b7a91e0c5d3f6",
    "timestamp": "2026-06-01T18:30:00+00:00",
    "responseTimeMs": 2
  }
}
401

Invalid or missing credentials.

429

Request limit exceeded.

Possible errors

Codes this endpoint can return in error.code. The full detail lives in the catalog.

See the full catalog
GET /api/v6/urlshortener/domains
curl -X GET 'https://developers.hablame.co/api/v6/urlshortener/domains' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer hk_YOUR_API_KEY'

Try-It

Run the request against the real API with your own API key.

The key is used only in your browser for this request. It is not stored nor sent anywhere else.

GET https://developers.hablame.co/api/v6/urlshortener/domains

Response

You have not sent a request yet.