Skip to main content
GET
/
menus
List menus
curl --request GET \
  --url https://admin.aeoliancms.com/api/v1/menus \
  --header 'Authorization: Bearer <token>'
{
  "menus": [
    {
      "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>

Response

200 - application/json

List of menus with items

menus
object[]