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
Parameter | Constraints | Description |
---|---|---|
workspace | optional | Your 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.
Property | Type | Description |
---|---|---|
slug | string | Unique identifier of a tag. |
name | string | Name of a tag. |
count | integer | The number of brand short links tagged with this tag. |