Skip to content

List Links

GET
/admin/content/{collectionId}/items/{itemId}/links
curl --request GET \
--url 'http://localhost:9000/admin/content/example/items/example/links?limit=50&offset=0'
collectionId
required
string
itemId
required
string
limit
integer
default: 50
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
links
Array<object>
object
id
string
created_at
string format: date-time
updated_at
string format: date-time
source_item
object
id
string
title
string
slug
string
target_item
object
id
string
title
string
slug
string
relationship
object
id
string
relationship_type
string
count
integer
limit
integer
offset
integer
Example generated
{
"links": [
{
"id": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z",
"source_item": {
"id": "example",
"title": "example",
"slug": "example"
},
"target_item": {
"id": "example",
"title": "example",
"slug": "example"
},
"relationship": {
"id": "example",
"relationship_type": "example"
}
}
],
"count": 1,
"limit": 1,
"offset": 1
}