Link List

This API retrieves a list of created short links.
Only links of the URL type can be retrieved.
Links of other types, such as post links, form links, and card links, are excluded.

This API is available from the Premium plan and above.

Http Header
GET /api/link/v1/list?regStartYmdt={regStartYmdt}&regEndYmdt={regEndYmdt}&pages={pages}
Host: https://vivoldi.com
Authorization: APIKey {Your API Key}
Content-type: -
User-agent: {Your User-agent}
Accept-Language: en
Request
{
	"regStartYmdt": "2025-08-01 00:00:00",
	"regEndYmdt": "2025-08-10 23:59:59",
	"pages": 1
}
FieldsField DescriptionsDescriptionRequiredType
linkIdLink ID Search the list by link ID.
URLEncode is required if the link ID contains special characters.
string
domainDomain Search the list by link domain.
The domain must be preceded by the value http:// or https://.
string
createTypeIdxCreation type idx 0:All links, 270:Links created in the Vivoldi dashboard, 272:Links created via API call, 274:Bulk link generation int
grpIdxGroup ID Retrieve the list by group ID.
If there is no value, it is set to the default value of 0.
int
urlLong URL Search the list by long URL. Allows partial search of the URL address. string
ttlLink Title Search the list by the title of the link. You can partially search by title. string
brandLinkYnBranded links If the link ID is not automatically generated and is set manually, it is a branded link.
Y: Enabled (branded link), N: Disabled (automatically generated link)
Y or N
notfSubscYnPush link Y:Enabled, N:Disabled Y or N
pushNotifyYnClicks Push notifications Y:Enabled, N:Disabled Y or N
mailNotifyYnClicks Mail notifications Y:Enabled, N:Disabled Y or N
regStartYmdtCreation start date The start date when the link was created, which must fall between the start date and end date.
Example: 2022-11-08 00:00:00
Date
regEndYmdtCreation end date The end date the link was created, which must fall between the start and end dates.
Example: 2022-11-08 23:59:59
The end date must be set within one month of the start date.
Date
pagesPages The pages value is used for pagination and defaults to 1.
한 페이지에 기본적으로 30개의 행이 조회되며 pages의 값이 2일 경우
By default, 30 rows are retrieved on a page, and if the value of PAGES is 2, 30 rows of data are retrieved starting from the 31st row.
int
delYmdLink removal date After the set date, the link is automatically deleted by the system.
If you set a value, data will be retrieved before the set date.
Example: 2025-12-31
Date
 
Response
{
	"code": 0,
	"message": "",
	"result": {
		"extra": {
			"pages": 1,
			"nextPages": 1,
			"nextYn": "N",
			"count": 2,
			"totalCount": 2
		},
		"list": [
			{
				"linkId": "createpostinglinks",
				"domain": "https://vvd.im",
				"typeIdx": 103,
				"typeNm": "URL",
				"ttl": "Add YouTube videos using post links to create short links",
				"memo": "",
				"url": "https://vvd.im/createpostinglinks",
				"grpIdx": 0,
				"grpNm": "",
				"acesCnt": 5072,
				"acesCntToday": 315,
				"lastClkYmdt": "2022-11-07 04:45:10",
				"longUrl": "https://vivoldi.com/blog/url-shortener/create-posts-link-url-shortener",
				"blockOverseasSticsYn": "N",
				"notfSubscYn": "N",
				"kakaoNotifyYn": "N",
				"pushNotifyYn": "N",
				"mailNotifyYn": "N",
				"delYmd": "",
				"regYmdt": "2022-11-02 04:27:05",
				"modYmdt": "2022-11-02 04:27:05"
			},
			{
				"linkId": "4Rth",
				"domain": "https://vvd.bz",
				"typeIdx": 103,
				"typeNm": "URL",
				"ttl": "NAVER",
				"memo": "",
				"url": "https://vvd.bz/4Rth",
				"grpIdx": 128,
				"grpNm": "Test",
				"acesCnt": 19,
				"acesCntToday": 3,
				"lastClkYmdt": "2022-11-07 17:20:40",
				"longUrl": "https://www.naver.com",
				"blockOverseasSticsYn": "N",
				"notfSubscYn": "N",
				"kakaoNotifyYn": "N",
				"pushNotifyYn": "Y",
				"mailNotifyYn": "N",
				"delYmd": "2025-12-31",
				"regYmdt": "2022-11-07 17:10:22",
				"modYmdt": "2022-11-07 17:10:22"
			}
		]
	}
}
FieldsDescriptionType
codeResponse code (0: Success)int
messageResponse message. If the response code is not 0, a related message will be returned.string
result
extra (Additional Information)
FieldField DescriptionDetailsType
pagesPageCurrent page numberint
nextPagesNext Page Next page number. If nextYn is N, it is the same as the current page. string
nextYnHas Next Page Y if there is a next page, N if there isn’t. string
countRow CountNumber of items returnedint
totalCountTotal Row CountIf there are 100 total items, totalCount is 100 and count might be 30int
list (Link List) - Array
FieldField DescriptionDetailsType
linkIdLink ID-string
domainDomain-string
typeIdxLink Type IndexOnly URL type (103) is supported for API callsint
typeNmLink Type Name-string
ttlLink Title-string
memoMemoAdmin-only note for managing links (not shown to users)string
urlShort URL-string
grpIdxGroup IDReturns 0 if not assigned to a groupint
grpNmGroup Name-string
acesCntTotal ClicksTotal number of link clicksint
acesCntTodayTodays Clicks-int
lastClkYmdtLast Click Date-Date
longUrlLong URLTarget URL when the short link is clickedstring
blockOverseasSticsYnBlock Overseas StatsY: enabled, N: disabledY or N
notfSubscYnPush Notification SubscribedY: enabled, N: disabledY or N
kakaoNotifyYnKakaoTalk Click AlertsY: enabled, N: disabledY or N
pushNotifyYnPush Click AlertsY: enabled, N: disabledY or N
mailNotifyYnEmail Click AlertsY: enabled, N: disabledY or N
delYmdDeleted Dateyyyy-mm-ddDate
regYmdtCreated DateInitial creation timestampDate
modYmdtModified DateLast modified timestampDate
array