Skip to main content
GET
/
menus
/
{identifier}
Get menu by handle or frontend ID
curl --request GET \
  --url https://admin.aeoliancms.com/api/v1/menus/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "menu": {
    "id": "<string>",
    "name": "<string>",
    "handle": "<string>",
    "frontendId": "<string>",
    "items": [
      {
        "id": "<string>",
        "title": "<string>",
        "linkType": "<string>",
        "linkValue": "<string>",
        "position": 123,
        "children": "<array>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key in format ak_<48-hex-chars>

Path Parameters

identifier
string
required

Menu handle or frontend ID (case-insensitive)

Response

Menu with items

menu
object