Skip to main content
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.
The id field in each returned item is the url_id you need when calling the Edit Link endpoint.

Query parameters

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.
Each item in data exposes the following properties:

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1

Page number for pagination.

Required range: x >= 1
limit
integer
default:100

Number of links per page (max 100).

Required range: 1 <= x <= 100
workspace_id
integer

Workspace ID to scope results. Defaults to the first workspace when omitted.

Response

Paginated list of links

success
boolean
required
Example:

true

status_code
integer
required
Example:

200

data
object[]
required
count
integer
required

Number of links returned in the current page.

Example:

25

total
integer
required

Total number of links matching the query.

Example:

142

page
integer
required

Current page number.

Example:

1

message
string
Example:

""