Skip to main content

List link tags

You can access all your tags collection of links with an HTTP GET on the link tags endpoint: https://app.linksgpt.com/api/v1/links/tags

REQUEST EXAMPLE

cURL
curl 'https://app.linksgpt.com/api/v1/links/tags' \
-X GET \
-H 'apikey: YOUR_API_KEY' \
-H 'Accept: application/json' \
-H 'Accept-Language: en'

QUERY PARAMETERS

ParameterConstraintsDescription
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": [
{
"slug": "linksgpt",
"name": "Linksgpt",
"count": 2
}
]
}

See more HTTP Responses

RESPONSE DATA

An array of object.

PropertyTypeDescription
slugstringUnique identifier of a tag.
namestringName of a tag.
countintegerThe number of brand short links tagged with this tag.