Skip to main content

List your links

You can access your branded short links collection with an HTTP GET on the links endpoint https://app.linksgpt.com/api/v1/links

REQUEST EXAMPLE

cURL
curl 'https://app.linksgpt.com/api/v1/links?page=1&limit=10&tags=tag1&domainId=1664552993913047093' \
-X GET \
-H 'apikey: YOUR_API_KEY' \
-H 'Accept: application/json' \
-H 'Accept-Language: en'

PATH PARAMETERS

ParameterConstraintsDescription
idrequiredUnique identifier of the branded short link you want to get.

QUERY PARAMETERS

ParameterConstraintsDescription
pagerequiredCurrent page.
limitrequiredHow many short links to load.
domainIdrequiredFilter short links which refer to a specific branded domain id. You can call List your domains to get the domain id.
sortoptionalSorting criteria to apply to your short links collection. Example: sort=createdAt desc
filteroptionalFilter short links according to title or link.
tagsoptionalFilter short links according to tags. Example: tags=tag1,tag2,tag3
workspaceoptionalYour workspace id, if you do not specify the workspace context, the default workspace (your main workspace) will be used. If apikey is used as the authentication mode, you do not need to set this parameter.

RESPONSE EXAMPLE

JSON
{
"code": 0,
"message": "success",
"data": [
{
"id": "1681896527355709345",
"workspaceId": "7e3ydi936o",
"domainId": "1664552993913047093",
"domainName": "demo.xxxx.com",
"title": "LinksGPT",
"path": "jEmQ",
"link": "https://demo.xxxx.com/jEmQ",
"file": "demo.xxxx.com/jEmQ",
"recordType": "301",
"destination": "https://www.linksgpt.com",
"utm": {
"source": "facebook",
"medium": "ad",
"campaign": "summer_sale",
"content": "image_ad1"
},
"tags": [],
"createdAt": "2023-06-20 13:19:14",
"updatedAt": "2023-06-20 13:19:14"
}
],
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "https://app.linkxbi.com/api/v1/links",
"per_page": 10,
"to": 1,
"total": 1
}
}

See more HTTP Responses

RESPONSE DATA

An array of object.

PropertyTypeDescription
idstringUnique identifier of the branded short link.
workspaceIdstringThe workspace id to which the short link belongs.
domainIdstringThe domain id to which the short link belongs.
domainNamestringThe domain name to which the short link belongs.
titlestringA title you assign to the short link in order to remember what's behind it.
pathstringThe keyword portion of your branded short link.
linkstringFull brand short link.
filestringThe brand short link without http schema.
recordTypestringURL redirect type.
destinationstringThe destination URL your branded short link pointed to.
utmobjectUTM params.
tagsarray of stringsUnique identifier of the Tag resource. Returns an empty array in the list api. If you want to get tags of a brand short link, call Get link detail.
createdAtstringCreated time.
updatedAtstringLast updated time.