GET
/api/v6/urlshortener/domainsList 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.
401
See the full catalogAUTH_REQUIREDNo Bearer token was sent, and every call requires one.401AUTH_INVALID_KEYThe API key is not recognized: wrong format, revoked or expired.401AUTH_SERVICE_NOT_ALLOWEDThe key is not allowed to use the service behind this endpoint.429RATE_TPS_EXCEEDEDYou exceeded your organization quota for this endpoint.