Links
List Links
Returns a paginated list of links for the workspace associated with the API token. Supports optional workspace override and pagination controls.
GET
List links
Returns a paginated list of links belonging to the workspace associated with your API token. Use this endpoint to browse existing links, retrieve
id values for editing, or synchronise link data with external systems.
Query parameters
| 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. |
Response payload
The response uses the standard envelope and adds pagination metadata: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.
Link object fields
Each item indata 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. |
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Page number for pagination.
Required range:
x >= 1Number of links per page (max 100).
Required range:
1 <= x <= 100Workspace ID to scope results. Defaults to the first workspace when omitted.
Response
Paginated list of links
Example:
true
Example:
200
Number of links returned in the current page.
Example:
25
Total number of links matching the query.
Example:
142
Current page number.
Example:
1
Example:
""
List links