Header Menu
1. Get grouped header menu items
Endpoint
GET /api/v1/menu/header
Request Headers
{
"X-API-Key": "123456789",
"Content-Type": "application/json"
}
Request Body (JSON):
{}
Response Body (200)
{
"success": true,
"message": "Menu retrieved successfully",
"data": {
"code": "header",
"items": [
{
"id": 1,
"title": "About Us",
"children": [
{
"id": 2,
"title": "Normal test",
"url": "/normal_test"
},
{
"id": 3,
"title": "Test page",
"url": null
}
]
},
{
"id": 4,
"title": "Test group",
"children": [
{
"id": 5,
"title": "test About us",
"url": "/test_about_us"
},
{
"id": 6,
"title": "Test page",
"url": "/test_page"
}
]
}
]
}
}
02 June 2026