Skip to content

List Relationships

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

OK

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