Returns a paginated list of links for the workspace associated with the API token. Supports optional workspace override and pagination controls.
id values for editing, or synchronise link data with external systems.
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (1-based). |
limit | integer | 100 | Links per page. Maximum 100. |
workspace_id | integer | first workspace | Workspace to scope results to. |
data — array of link objects (see schema below).count — number of items in the current page.total — total number of links matching the query.page — current page number.data exposes the following properties:
| Field | Type | Description |
|---|---|---|
id | integer | Unique link identifier. |
title | string | Human-friendly title (if set). |
url | string | Destination URL. |
link | string | Fully qualified link (domain + slug). |
short_url | string | Deprecated — same value as link. Will be removed in a future version; migrate to link. |
qr | string | null | Base64 QR code PNG if generated. |
starred | boolean | Whether the link is starred. |
redirect_type | integer | 301 or 302. |
domain_id | integer | Domain hosting the link. |
folder_id | integer | null | Folder assignment. |
pixel_id | integer | null | Associated tracking pixel. |
workspace_id | integer | Owning workspace. |
organization_id | integer | Owning organization. |
link_cloak | boolean | Whether URL cloaking is active. |
hide_referer | boolean | Whether the referrer header is removed. |
with_password | boolean | Whether the link is password-protected. |
params | object | null | Query parameters appended to the destination. |
social_share_title | string | null | Custom OpenGraph title. |
social_share_description | string | null | Custom OpenGraph description. |
social_share_image | string | null | Social preview image URL. |
created_at | string (ISO 8601) | When the link was created. |
updated_at | string (ISO 8601) | When the link was last modified. |
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number for pagination.
x >= 1Number of links per page (max 100).
1 <= x <= 100Workspace ID to scope results. Defaults to the first workspace when omitted.
Paginated list of links
true
200
Number of links returned in the current page.
25
Total number of links matching the query.
142
Current page number.
1
""