Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Menu Item

Retrieve a menu item

Returns

Returns a resource object of type menu_item.

Examples

1
GET https://site-api.datocms.com/menu-items/:menu_item_id HTTP/1.1
2
Authorization: Bearer YOUR-API-TOKEN
3
Accept: application/json
4
X-Api-Version: 3
Terminal window
1
curl -g 'https://site-api.datocms.com/menu-items/:menu_item_id' \
2
\
3
-H "Authorization: Bearer YOUR-API-TOKEN" \
4
-H "Accept: application/json" \
5
-H "X-Api-Version: 3"
1
await fetch("https://site-api.datocms.com/menu-items/:menu_item_id", {
2
headers: {
3
Authorization: "Bearer YOUR-API-TOKEN",
4
Accept: "application/json",
5
"X-Api-Version": "3",
6
},
7
});
1
HTTP/1.1 200 OK
2
Content-Type: application/json
3
Cache-Control: cache-control: max-age=0, private, must-revalidate
4
X-RateLimit-Limit: 30
5
X-RateLimit-Remaining: 28
6
7
{
8
"data": {
9
"type": "menu_item",
10
"id": "uinr2zfqQLeCo_1O0-ao-Q",
11
"relationships": {
12
"item_type": {
13
"data": {
14
"type": "item_type",
15
"id": "DxMaW10UQiCmZcuuA-IkkA"
16
}
17
},
18
"item_type_filter": {
19
"data": {
20
"type": "item_type_filter",
21
"id": "FF-P5of6Qp-DD2w0xoaa6Q"
22
}
23
},
24
"parent": {
25
"data": null
26
},
27
"children": {
28
"data": [
29
{
30
"type": "menu_item",
31
"id": "uinr2zfqQLeCo_1O0-ao-Q"
32
}
33
]
34
}
35
},
36
"attributes": {
37
"label": "Posts",
38
"position": 1,
39
"external_url": "",
40
"open_in_new_tab": true
41
}
42
}
43
}